/[tewi]/VC6Compat/stdint.h
ViewVC logotype

Annotation of /VC6Compat/stdint.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations)
Thu Oct 17 09:53:39 2024 UTC (4 weeks, 1 day ago) by nishi
Branch: MAIN
Content type: text/x-c
update

1 nishi 1.1 /* $Id: stdint.h 301 2024-10-10 02:06:20Z nishi $ */
2    
3     #ifndef __STDINT_H__
4     #define __STDINT_H__
5    
6     typedef unsigned char uint8_t;
7     typedef unsigned short uint16_t;
8     typedef unsigned int uint32_t;
9     typedef char int8_t;
10     typedef short int16_t;
11     typedef int int32_t;
12    
13     #define INT32_MAX 0x7fffffff
14    
15     #endif

nishi@chaotic.ninja
ViewVC Help
Powered by ViewVC 1.3.0-dev