X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=stdc.hlist;h=1ce058e814ec7047e4a3fe0a72944ab222320a17;hb=4e81a3a2e191ccf8498da6d23e96c03fc8b36c83;hp=c627c3b00fca283e974ee301d061952624ee4716;hpb=cb6623274360357225526abaf285e5b500dbef97;p=ia32rtools.git diff --git a/stdc.hlist b/stdc.hlist index c627c3b..1ce058e 100644 --- a/stdc.hlist +++ b/stdc.hlist @@ -16,6 +16,21 @@ long __cdecl labs (long); long __cdecl strtol (const char*, char**, int); unsigned long __cdecl strtoul (const char*, char**, int); +int __cdecl _putenv (const char*); +void __cdecl _searchenv (const char*, const char*, char*); +char* __cdecl _ecvt (double, int, int*, int*); +char* __cdecl _fcvt (double, int, int*, int*); +char* __cdecl _gcvt (double, int, char*); +void __cdecl _makepath (char*, const char*, const char*, const char*, const char*); +void __cdecl _splitpath (const char*, char*, char*, char*, char*); +char* __cdecl _fullpath (char*, const char*, size_t); +char* __cdecl _itoa (int, char*, int); +char* __cdecl _ltoa (long, char*, int); +char* __cdecl _ultoa(unsigned long, char*, int); +wchar_t* __cdecl _itow (int, wchar_t*, int); +wchar_t* __cdecl _ltow (long, wchar_t*, int); +wchar_t* __cdecl _ultow (unsigned long, wchar_t*, int); + void* __cdecl memchr (const void*, int, size_t); int __cdecl memcmp (const void*, const void*, size_t); void* __cdecl memcpy (void*, const void*, size_t); @@ -73,6 +88,14 @@ size_t __cdecl wcsspn(const wchar_t*, const wchar_t*); wchar_t* __cdecl wcsstr(const wchar_t*, const wchar_t*); wchar_t* __cdecl wcstok(wchar_t*, const wchar_t*); size_t __cdecl wcsxfrm(wchar_t*, const wchar_t*, size_t); +long __cdecl wcstol(const wchar_t*, wchar_t**, int); +unsigned long __cdecl wcstoul(const wchar_t*, wchar_t**, int); +double __cdecl wcstod(const wchar_t*, wchar_t**); +size_t __cdecl wcstombs(char*, const wchar_t*, size_t); +int __cdecl wctomb(char*, wchar_t); +int __cdecl mblen(const char*, size_t); +size_t __cdecl mbstowcs(wchar_t*, const char*, size_t); +int __cdecl mbtowc(wchar_t*, const char*, size_t); wchar_t* __cdecl _wcsdup (const wchar_t*); int __cdecl _wcsicmp (const wchar_t*, const wchar_t*); @@ -151,6 +174,12 @@ int __cdecl getc (FILE*); int __cdecl putc (int, FILE*); int __cdecl getchar (void); int __cdecl putchar (int); +int __cdecl fprintf (FILE*, const char*, ...); +int __cdecl printf (const char*, ...); +int __cdecl sprintf (char*, const char*, ...); +int __cdecl vfprintf (FILE*, const char*, __VALIST); +int __cdecl vprintf (const char*, __VALIST); +int __cdecl vsprintf (char*, const char*, __VALIST); int __cdecl _ismbcalnum (unsigned int); int __cdecl _ismbcalpha (unsigned int); @@ -208,6 +237,7 @@ void * __cdecl _onexit (int (__cdecl *)(void)); void * __cdecl signal (int, void *); int __cdecl raise (int); +int __cdecl __snprintf (char *, unsigned int, const char*, ...); void* __cdecl memcpy_0 (void*, const void*, size_t);