Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7894 rgimad 1
#ifndef _STRING_H
2
#define _STRING_H
3
 
4
void* memset(void *mem, int c, unsigned size);
5
void* memcpy(void *dst, const void *src, unsigned size);
6
int memcmp(const void* buf1, const void* buf2, int count);
7
 
8
char *strcat(char strDest[], char strSource[]);
9
int strcmp(const char* s1, const char* s2);
10
char *strcpy(char strDest[], const char strSource[]);
11
char* strncpy(char *strDest, const char *strSource, unsigned n);
12
int strlen(const char* string);
13
char* strchr(const char* string, int c);
14
char* strrchr(const char* string, int c);
15
 
16
void _itoa(int i, char *s);
17
void reverse(char s[]);
18
void itoa(int n, char s[]);
19
int atoi ( char *s );
20
 
21
 
22
 
23
#endif