Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created March 25, 2019 08:30
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/d1c01d574d35c9141f91dc32c04fd9fb to your computer and use it in GitHub Desktop.
Save jasongorman/d1c01d574d35c9141f91dc32c04fd9fb to your computer and use it in GitHub Desktop.
#ifndef ENCAPSULATION_ROOM_H
#define ENCAPSULATION_ROOM_H
struct Room {
float width;
float length;
};
float area(const 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