export unencode

This commit is contained in:
James Cherry 2021-03-10 18:47:18 -07:00
parent a202c6bf69
commit d9977c9088
2 changed files with 3 additions and 4 deletions

View File

@ -27,9 +27,6 @@
namespace sta {
static char *
unencode(const char *inits[]);
int
parseThreadsArg(int &argc,
char *argv[])
@ -118,7 +115,7 @@ evalTclInit(Tcl_Interp *interp,
delete [] unencoded;
}
static char *
char *
unencode(const char *inits[])
{
size_t length = 0;

View File

@ -44,6 +44,8 @@ initSta(int argc,
void
evalTclInit(Tcl_Interp *interp,
const char *inits[]);
char *
unencode(const char *inits[]);
bool
findCmdLineFlag(int &argc,