Private function in C using static
#ifndef PRIVATE_FUNCT_H | |
#define PRIVATE_FUNCT_H | |
struct Contact; | |
struct Contact * create_contact(); | |
static void print_numbers( struct Contact * some_contact ); | |
void delete_contact( struct Contact * my_points ); | |
#endif /* PRIVATE_FUNCT_H */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment