Subversion Repositories Kolibri OS

Rev

Rev 2753 | Rev 7498 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2753 Rev 7495
Line 120... Line 120...
120
char * __cdecl strcpy( char *target, const char *source );
120
char * __cdecl strcpy( char *target, const char *source );
121
int __cdecl strlen( const char *line );
121
int __cdecl strlen( const char *line );
122
char * __cdecl strrchr( const char * string, int c );
122
char * __cdecl strrchr( const char * string, int c );
123
 
123
 
Line -... Line 124...
-
 
124
/*
124
#if _MSC_VER < 1400
125
#if _MSC_VER < 1400
125
extern "C" void * __cdecl memcpy( void *dst, const void *src, size_t bytesCount );
126
extern "C" void * __cdecl memcpy( void *dst, const void *src, size_t bytesCount );
126
extern "C" void memset( Byte *dst, Byte filler, Dword count );
127
extern "C" void memset( Byte *dst, Byte filler, Dword count );
127
//#pragma intrinsic(memcpy,memset)
128
//#pragma intrinsic(memcpy,memset)
128
#elif defined AUTOBUILD
129
#elif defined AUTOBUILD
-
 
130
*/
129
void memcpy( void *dst, const void *src, size_t bytesCount );
131
void memcpy( void *dst, const void *src, size_t bytesCount );
130
void memset( Byte *dst, Byte filler, Dword count );
132
void memset( Byte *dst, Byte filler, Dword count );
-
 
133
/*
131
#else
134
#else
132
void * __cdecl memcpy( void *dst, const void *src, size_t bytesCount );
135
void * __cdecl memcpy( void *dst, const void *src, size_t bytesCount );
133
void memset( Byte *dst, Byte filler, Dword count );
136
void memset( Byte *dst, Byte filler, Dword count );
134
#endif
137
#endif
-
 
138
*/
Line 135... Line 139...
135
 
139
 
136
void sprintf( char *Str, char* Format, ... );
140
void sprintf( char *Str, char* Format, ... );
137
//
141
//
138
Dword rtlInterlockedExchange( Dword *target, Dword value );
142
Dword rtlInterlockedExchange( Dword *target, Dword value );