炼狱,是为追逐光芒
分类: LINUX
2010-10-05 16:20:37
|
FILE *fopen(const char *path,const char *mode); |
|
if((fp=fopen("../file","r"))==NULL) |
|
int fclose(FILE *fp); |
|
void perror(const char *s); |
|
int fgetc(FILE *stream); |
|
char *fgets(char *s,int size,FILE *stream); |
|
/*************************************** |