mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-12 05:26:00 -04:00

- Move source code from `trunk` into program root directory. - Fix build and ASM files. - Translated a few RU comments to en_US. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden. (Work towards #75, point 3) Reviewed-on: https://git.kolibrios.org/KolibriOS/kolibrios/pulls/244 Reviewed-by: Gleb Zaharov <risdeveau@codrs.ru> Reviewed-by: Burer <burer@kolibrios.org> Co-authored-by: Andrew <dent.ace@gmail.com> Co-committed-by: Andrew <dent.ace@gmail.com>
16 lines
518 B
C
16 lines
518 B
C
|
|
#ifndef NULL
|
|
#define NULL ((void*)0)
|
|
#endif
|
|
|
|
void* memset(void *mem, int c, unsigned size);
|
|
void* memcpy(void *dst, const void *src, unsigned size);
|
|
int memcmp(const void* buf1, const void* buf2, int count);
|
|
|
|
void strcat(char strDest[], char strSource[]);
|
|
int strcmp(const char* string1, const char* string2);
|
|
void strcpy(char strDest[], const char strSource[]);
|
|
char* strncpy(char *strDest, const char *strSource, unsigned n);
|
|
int strlen(const char* string);
|
|
char *strchr(const char* string, int c);
|