Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7494 → Rev 7495

/programs/other/table/kosSyst.h
122,17 → 122,21
int __cdecl strlen( const char *line );
char * __cdecl strrchr( const char * string, int c );
 
/*
#if _MSC_VER < 1400
extern "C" void * __cdecl memcpy( void *dst, const void *src, size_t bytesCount );
extern "C" void memset( Byte *dst, Byte filler, Dword count );
//#pragma intrinsic(memcpy,memset)
#elif defined AUTOBUILD
*/
void memcpy( void *dst, const void *src, size_t bytesCount );
void memset( Byte *dst, Byte filler, Dword count );
/*
#else
void * __cdecl memcpy( void *dst, const void *src, size_t bytesCount );
void memset( Byte *dst, Byte filler, Dword count );
#endif
*/
 
void sprintf( char *Str, char* Format, ... );
//