Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. #ifndef STANDARD_VARIABLE_DEFINE_LIBRARY
  2. #define STANDARD_VARIABLE_DEFINE_LIBRARY
  3.  
  4. typedef char int8_t;
  5. typedef unsigned char uint8_t;
  6. typedef int int16_t;
  7. typedef unsigned int uint16_t;
  8. typedef long int int32_t;
  9. typedef unsigned long int uint32_t;
  10. typedef long long int int64_t;
  11. typedef unsigned long long int uint64_t;
  12. typedef size_t max_value;
  13. typedef const char cint8_t;
  14. typedef const unsigned char cuint8_t;
  15. typedef const int cint16_t;
  16. typedef const unsigned int cuint16_t;
  17. typedef const long int cint32_t;
  18. typedef const unsigned long int cuint32_t;
  19. typedef const long long int cint64_t;
  20. typedef const unsigned long long int cuint64_t;
  21. typedef const size_t cmax_size;
  22. typedef unsigned char byte;
  23. typedef char ascii_byte;
  24. typedef unsigned int mem16_t;
  25. typedef unsigned long int mem32_t;
  26. typedef unsigned long long int mem64_t;
  27. typedef const char* string;
  28.  
  29.  
  30. #endif // STANDARD_VARIABLE_DEFINE_LIBRARY, STanDard Variable define library (STDV)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement