23 lines
383 B
C
23 lines
383 B
C
|
#ifndef SRC_H
|
||
|
#define SRC_H
|
||
|
#define FNAME "Price.txt"
|
||
|
#define FIRST_NAME "Price"
|
||
|
#define LAST_NAME "Hiller"
|
||
|
#define LAST_THREE_DIGITS_ABC "106"
|
||
|
#define HEADER_LINE "Spring 2024 - CS2124 OC3, zfp106"
|
||
|
#include "lib/lib.h"
|
||
|
void c1();
|
||
|
void c2();
|
||
|
void c3();
|
||
|
void c4();
|
||
|
void c5();
|
||
|
void c6();
|
||
|
void c7();
|
||
|
void c8();
|
||
|
void c9();
|
||
|
void c10();
|
||
|
void c11();
|
||
|
void c12();
|
||
|
void print_header();
|
||
|
#endif
|