Subversion Repositories Kolibri OS

Rev

Rev 647 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 647 Rev 6429
Line 16... Line 16...
16
void free(void *ptr);
16
void free(void *ptr);
17
void *realloc(void *ptr, size_t size);
17
void *realloc(void *ptr, size_t size);
18
int atoi(const char *nptr);
18
int atoi(const char *nptr);
19
long int strtol(const char *nptr, char **endptr, int base);
19
long int strtol(const char *nptr, char **endptr, int base);
20
unsigned long int strtoul(const char *nptr, char **endptr, int base);
20
unsigned long int strtoul(const char *nptr, char **endptr, int base);
-
 
21
void exit(int);
Line 21... Line 22...
21
 
22
 
22
/* stdio.h */
23
/* stdio.h */
23
typedef struct __FILE FILE;
24
typedef struct __FILE FILE;
24
#define EOF (-1)
25
#define EOF (-1)
Line 36... Line 37...
36
int getc(FILE *stream);
37
int getc(FILE *stream);
37
int getchar(void);
38
int getchar(void);
38
char *gets(char *s);
39
char *gets(char *s);
39
int ungetc(int c, FILE *stream);
40
int ungetc(int c, FILE *stream);
40
int fflush(FILE *stream);
41
int fflush(FILE *stream);
-
 
42
int putchar (int c);
Line 41... Line 43...
41
 
43
 
42
int printf(const char *format, ...);
44
int printf(const char *format, ...);
43
int fprintf(FILE *stream, const char *format, ...);
45
int fprintf(FILE *stream, const char *format, ...);
44
int sprintf(char *str, const char *format, ...);
46
int sprintf(char *str, const char *format, ...);
Line 61... Line 63...
61
char *strcpy(char *dest, const char *src);
63
char *strcpy(char *dest, const char *src);
62
void *memcpy(void *dest, const void *src, size_t n);
64
void *memcpy(void *dest, const void *src, size_t n);
63
void *memmove(void *dest, const void *src, size_t n);
65
void *memmove(void *dest, const void *src, size_t n);
64
void *memset(void *s, int c, size_t n);
66
void *memset(void *s, int c, size_t n);
65
char *strdup(const char *s);
67
char *strdup(const char *s);
-
 
68
size_t strlen(const char *s);
Line 66... Line 69...
66
 
69
 
67
/* dlfcn.h */
70
/* dlfcn.h */
68
#define RTLD_LAZY       0x001
71
#define RTLD_LAZY       0x001
69
#define RTLD_NOW        0x002
72
#define RTLD_NOW        0x002