예제 #1
0
파일: stable.c 프로젝트: Nephatrine/nephq2
const char *Q_STGetString(stable_t st, int token) {
    return nfst_to_string((struct nfst_StringTable *)st.st, token);
}
예제 #2
0
파일: stable.c 프로젝트: postfix/quake2vr
const char *Q_STGetString(const stable_t *st, int token) {
    assert(st != NULL && st->st != NULL);
    return nfst_to_string((struct nfst_StringTable *)st->st, token);
}
예제 #3
0
// Returns the string representation of `loc`.
const char *nfcd_to_string(struct ConfigData *cd, nfcd_loc loc)
{
	return nfst_to_string(STRINGTABLE(cd), LOC_OFFSET(loc));
}