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