Esempio n. 1
0
File: table.c Progetto: gdkar/picoc
/* register a string in the shared string store */
char *TableStrRegister2(Picoc *pc, const char *Str, int Len){
    return TableSetIdentifier(pc, &pc->StringTable, Str, Len);
}
Esempio n. 2
0
/* register a string in the shared string store */
char *TableStrRegister2(const char *Str, int Len)
{
    return TableSetIdentifier(&StringTable, Str, Len);
}