在初学阶段不要自定义头文件。。
只需要使用标准 头文件就行<stdio.h> <stdlib.h> <unistd.h> <math.h> 等 带< > 都属于 标准的头文件。。
而"my_stdio.h"
带" "则属于用户自定义的。。
用户自定库文件 包括 函数的声明,比如 自己写的函数在其他.c文件
,需要写进头文件。
类型定义。。 通常为了简便操作 如: typedef struct node *p
等
,写起代码来更便捷。
这里简单写一个头文件.
===============
/*my_stdio.h*/
typedef
int
u8;
============
/*main.c*
#include <stdio.h>
#include "my_stdio.h"
int main ( int argc,char *argv[] )
{
u8 a =12;
printf ("%d\n", a);
return 0;
}