/*A header file */ #ifndef PROG4_H #define PROG4_H #include typedef char * String; /* Simple example of typedef */ /* Example of a new type name, TwoNums, that refers to a struct: */ typedef struct twoNums_tag { int num1; int num2; } TwoNums; void fill2Nums(TwoNums * theStruct); #endif