X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=stdc.hlist;h=35208a5b5f14f3343cdcf69b3e70392d59330822;hb=c8fb3694c071ffe819509e01292b2a1520a70017;hp=83a5d25097d738cbc72c5873607fe108e5586e22;hpb=01b85c127a169c9dd21fc9146ee7177830a994e0;p=ia32rtools.git diff --git a/stdc.hlist b/stdc.hlist index 83a5d25..35208a5 100644 --- a/stdc.hlist +++ b/stdc.hlist @@ -125,6 +125,8 @@ int __cdecl isxdigit(int); int __cdecl tolower(int); int __cdecl toupper(int); +int __cdecl _isctype (int, int); + clock_t __cdecl clock (void); time_t __cdecl time (time_t*); double __cdecl difftime (time_t, time_t); @@ -181,6 +183,18 @@ int __cdecl vfprintf (FILE*, const char*, __VALIST); int __cdecl vprintf (const char*, __VALIST); int __cdecl vsprintf (char*, const char*, __VALIST); +long __cdecl _findfirst (const char*, struct _finddata_t*); +int __cdecl _findnext (long, struct _finddata_t*); +int __cdecl _findclose (long); +int __cdecl _chdir (const char*); +char* __cdecl _getcwd (char*, int); +int __cdecl _mkdir (const char*); +char* __cdecl _mktemp (char*); +int __cdecl _rmdir (const char*); +int __cdecl _chmod (const char*, int); +int __cdecl remove (const char*); +int __cdecl rename (const char*, const char*); + int __cdecl _setmbcp (int); int __cdecl _getmbcp (void); int __cdecl _ismbbalpha (unsigned int); @@ -257,10 +271,20 @@ int __cdecl __snprintf (char *, unsigned int, const char*, ...); void* __cdecl memcpy_0 (void*, const void*, size_t); +// msvcrt math +double __cdecl ceil(double x); +double __cdecl floor(double x); +double __cdecl sqrt(double x); +double __cdecl pow(double x, double y); +unsigned int __cdecl _rotl(unsigned int num, int shift); +unsigned int __cdecl _rotr(unsigned int num, int shift); + // msvcrt unsigned long __cdecl _beginthread (void (__cdecl *)(void *), unsigned, void*); -void __cdecl _endthread (void); +DECLSPEC_NORETURN void __cdecl _endthread (void); unsigned long __cdecl _beginthreadex (void *, unsigned int, unsigned int (__stdcall *) (void *), void*, unsigned int, unsigned int*); -// DECLSPEC_NORETURN -void __cdecl _endthreadex (unsigned int); +DECLSPEC_NORETURN void __cdecl _endthreadex (unsigned int); +void __cdecl _lock(int locknum); +void __cdecl _unlock(int locknum); +size_t __cdecl strncnt(const char*, size_t);