//
// Tomás Oliveira e Silva, AED, October 2021
//
// code to print the sizes (in bytes) of the fundamental data types -- the print_sizes() prototype
//

#ifndef SIZES_H
#define SIZES_H
//
// the previous two lines ensure than the rest of the contents of this include
// file (in this case that is just the prototype of the print_sizes function
// are actually included at most once, even if the sizes.h is included several
// times in another source code file.
//

void print_sizes(void); // the print_sizes() function prototy+e

#endif
