Subversion Repositories Kolibri OS

Rev

Rev 215 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. //#define isspace(c) ((c)==' ')
  2. #define abs(i) (((i)<0)?(-(i)):(i))
  3.  
  4. extern int atoib(char *s,int b);
  5. extern int atoi(char *s);
  6. extern char tolower(char c);
  7. extern char toupper(char c);
  8. extern void itoab(int n,char* s,int  b);
  9. extern void itoa(int n,char* s);
  10.