9 lines
159 B
C
9 lines
159 B
C
#ifndef NAMEARCHIVE_H
|
|
#define NAMEARCHIVE_H
|
|
|
|
void addName(const char *name);
|
|
void removeName(const char *name);
|
|
void printNames();
|
|
void clearArchive();
|
|
|
|
#endif |