If I have the following:
/*
 * example.h
 */
#ifndef EXAMPLE
#define EXAMPLE
#include <stdio.h>
extern int parse_string(FILE *, char const*, const unsigned int);
#endif
Will this mean that code that uses ... #include example.h ... won't have to ... #include example.h's ... dependencies ?  ( ie: #include <stdio.h> )
 
     
     
    