mirror of
https://github.com/thestk/stk
synced 2026-01-11 20:11:52 +00:00
13 lines
309 B
C
13 lines
309 B
C
// Miscellaneous parsing and error functions for use with STK projects.
|
|
//
|
|
// Gary P. Scavone, 1999.
|
|
|
|
#include "FileWvOut.h"
|
|
#include "Messager.h"
|
|
|
|
void usage(char *function);
|
|
|
|
int checkArgs(int numArgs, char *args[]);
|
|
|
|
bool parseArgs(int numArgs, char *args[], stk::WvOut **output, stk::Messager& messager);
|