mirror of
https://github.com/thestk/stk
synced 2026-04-23 07:48:36 +00:00
16 lines
306 B
C
16 lines
306 B
C
// Miscellaneous parsing and error functions for use with syntmono.
|
|
//
|
|
// Gary P. Scavone, 1999.
|
|
|
|
#include "../STK/Instrmnt.h"
|
|
|
|
int newInstByNum(int instNum);
|
|
|
|
int newInstByName(char *instName);
|
|
|
|
void usage(char *func);
|
|
|
|
int checkArgs(int numArgs, char *args[]);
|
|
|
|
int parseArgs(int numArgs, char *args[]);
|