Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created March 26, 2019 06:59
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 jasongorman/338a6ced9a2a5c22570e492b413c772e to your computer and use it in GitHub Desktop.
Save jasongorman/338a6ced9a2a5c22570e492b413c772e to your computer and use it in GitHub Desktop.
#ifndef ENCAPSULATION_ROOM_H
#define ENCAPSULATION_ROOM_H
typedef struct Room Room;
Room* new_room(float width, float length);
float area(struct Room *room);
#endif //ENCAPSULATION_ROOM_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment