win32.hlist, more types, fixes
[ia32rtools.git] / stdc.hlist
CommitLineData
39b168b8 1int __cdecl rand (void);
2void __cdecl srand (unsigned int);
3void* __cdecl calloc (size_t, size_t);
4void* __cdecl malloc (size_t);
5void* __cdecl realloc (void*, size_t);
6void __cdecl free (void*);
7void __cdecl abort (void);
8void __cdecl exit (int);
9int __cdecl atexit (void (__cdecl *)(void));
10int __cdecl system (const char*);
11char* __cdecl getenv (const char*);
12void* __cdecl bsearch (const void*, const void*, size_t, size_t, int (__cdecl *)(const void*, const void*));
13void __cdecl qsort(void*, size_t, size_t, int (__cdecl *)(const void*, const void*));
14int __cdecl abs (int);
15long __cdecl labs (long);
16long __cdecl strtol (const char*, char**, int);
17unsigned long __cdecl strtoul (const char*, char**, int);
18
19void* __cdecl memchr (const void*, int, size_t);
20int __cdecl memcmp (const void*, const void*, size_t);
21void* __cdecl memcpy (void*, const void*, size_t);
22void* __cdecl memmove (void*, const void*, size_t);
23void* __cdecl memset (void*, int, size_t);
24char* __cdecl strcat (char*, const char*);
25char* __cdecl strchr (const char*, int) ;
26int __cdecl strcmp (const char*, const char*);
27int __cdecl strcoll (const char*, const char*);
28char* __cdecl strcpy (char*, const char*);
29size_t __cdecl strcspn (const char*, const char*);
30char* __cdecl strerror (int);
31double __cdecl atof (const char*);
32int __cdecl atoi (const char*);
33long __cdecl atol (const char*);
34
35size_t __cdecl strlen (const char*) ;
36char* __cdecl strncat (char*, const char*, size_t);
37int __cdecl strncmp (const char*, const char*, size_t) ;
38char* __cdecl strncpy (char*, const char*, size_t);
39char* __cdecl strpbrk (const char*, const char*) ;
40char* __cdecl strrchr (const char*, int) ;
41size_t __cdecl strspn (const char*, const char*) ;
42char* __cdecl strstr (const char*, const char*) ;
43char* __cdecl strtok (char*, const char*);
44size_t __cdecl strxfrm (char*, const char*, size_t);
45
46int __cdecl isalnum(int);
47int __cdecl isalpha(int);
48int __cdecl iscntrl(int);
49int __cdecl isdigit(int);
50int __cdecl isgraph(int);
51int __cdecl islower(int);
52int __cdecl isprint(int);
53int __cdecl ispunct(int);
54int __cdecl isspace(int);
55int __cdecl isupper(int);
56int __cdecl isxdigit(int);
57int __cdecl tolower(int);
58int __cdecl toupper(int);
59
60char* __cdecl asctime (const struct tm*);
61char* __cdecl ctime (const time_t*);
62struct tm* __cdecl gmtime (const time_t*);
63struct tm* __cdecl localtime (const time_t*);
64size_t __cdecl strftime (char*, size_t, const char*, const struct tm*);
65extern void __cdecl _tzset (void);
66extern void __cdecl tzset (void);
67
68FILE* __cdecl fopen (const char*, const char*);
69FILE* __cdecl freopen (const char*, const char*, FILE*);
70int __cdecl fflush (FILE*);
71int __cdecl fclose (FILE*);
72int __cdecl remove (const char*);
73int __cdecl rename (const char*, const char*);
74FILE* __cdecl tmpfile (void);
75char* __cdecl tmpnam (char*);
76char* __cdecl _tempnam (const char*, const char*);
77int __cdecl _rmtmp(void);
78int __cdecl _unlink (const char*);
79char* __cdecl tempnam (const char*, const char*);
80int __cdecl rmtmp(void);
81int __cdecl unlink (const char*);
82int __cdecl setvbuf (FILE*, char*, int, size_t);
83void __cdecl setbuf (FILE*, char*);
84size_t __cdecl fread (void*, size_t, size_t, FILE*);
85size_t __cdecl fwrite (const void*, size_t, size_t, FILE*);
86int __cdecl fseek (FILE*, long, int);
87long __cdecl ftell (FILE*);
88void __cdecl rewind (FILE*);