forked from KolibriOS/kolibrios
git-svn-id: svn://kolibrios.org@560 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
3be4fd7a4b
commit
f2cd6a6d25
@ -1,7 +1,7 @@
|
|||||||
#ifndef stdio_h
|
#ifndef stdio_h
|
||||||
#define stdio_h
|
#define stdio_h
|
||||||
#include "mesys.h"
|
#include "mesys.h"
|
||||||
#define NULL (void*)0
|
#define NULL ((void*)0)
|
||||||
typedef struct {
|
typedef struct {
|
||||||
char* buffer;
|
char* buffer;
|
||||||
int buffersize;
|
int buffersize;
|
||||||
|
@ -6,4 +6,4 @@ extern int atoi(char *s);
|
|||||||
extern char tolower(char c);
|
extern char tolower(char c);
|
||||||
extern char toupper(char c);
|
extern char toupper(char c);
|
||||||
extern void itoab(int n,char* s,int b);
|
extern void itoab(int n,char* s,int b);
|
||||||
extern void itoa(int n,char* s);
|
extern void itoa(int n,char* s);
|
||||||
|
@ -22,4 +22,4 @@ extern char* strstr(const char*,const char*);
|
|||||||
extern char* strtok(char*,const char*);
|
extern char* strtok(char*,const char*);
|
||||||
extern int strxfrm(char*,const char*,int);
|
extern int strxfrm(char*,const char*,int);
|
||||||
extern char* strdup(const char*);
|
extern char* strdup(const char*);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user