Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the equivalent of int64_t, int_least16_t & uint8_t in Visual C++ 2008? [duplicate]

Tags:

c++

visual-c++

Possible Duplicate:
What's the equivalent of int32_t in Visual C++?

What's the equivalent of int64_t , int_least16_t and uint8_t in Visual C++ 2008?

like image 472
kevin Avatar asked Apr 14 '11 02:04

kevin


2 Answers

  • int64_t: __int64
  • uint8_t: unsigned __int8
  • int_least16_t: __int16
like image 51
Yi Zhao Avatar answered Oct 12 '22 23:10

Yi Zhao


int64_t        __int64
int_least16_t  short int
uint8_t        unsigned char
like image 40
Benjamin Lindley Avatar answered Oct 13 '22 01:10

Benjamin Lindley