Subversion Repositories Kolibri OS

Rev

Rev 560 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
611 andrew_pro 1
#include 
215 victor 2
//#define isspace(c) ((c)==' ')
3
#define abs(i) (((i)<0)?(-(i)):(i))
4
 
5
extern int atoib(char *s,int b);
6
extern int atoi(char *s);
7
extern char tolower(char c);
8
extern char toupper(char c);
9
extern void itoab(int n,char* s,int  b);
560 victor 10
extern void itoa(int n,char* s);
611 andrew_pro 11
 
12
extern void* malloc(dword size);
13
extern void  free(void *pointer);
14
extern void* realloc(void* pointer,dword size);