Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

stdint.h 385B

12345678910111213141516
  1. #ifndef STDINT_H
  2. #define STDINT_H
  3. typedef unsigned size_t;
  4. typedef unsigned char uint8_t;
  5. typedef unsigned short uint16_t;
  6. typedef unsigned long uint32_t;
  7. typedef unsigned long long uint64_t;
  8. typedef signed char int8_t;
  9. typedef signed short int16_t;
  10. typedef signed long int32_t;
  11. typedef signed long long int64_t;
  12. #endif /* STDINT_H */