Skip to content

Instantly share code, notes, and snippets.

@kateolenya
Last active March 20, 2019 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kateolenya/6cc680e6054946a08f2c65f997e1f2ac to your computer and use it in GitHub Desktop.
Save kateolenya/6cc680e6054946a08f2c65f997e1f2ac to your computer and use it in GitHub Desktop.
Private variables in struct in C
#ifndef PRIVATE_VAR
#define PRIVATE_VAR
struct Contact;
struct Contact * create_contact();
void delete_contact( struct Contact * some_contact );
#endif /* PRIVATE_VAR */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment