]> icculus.org git repositories - divverent/nexuiz.git/blob - data/source/util/altstring.qh
give menu source its own directory
[divverent/nexuiz.git] / data / source / util / altstring.qh
1 // NG Menu
2 // util/altstring.qh
3
4 // used to extract 'string' strings from a normal string
5 // INFO: the index into the altstring is the same like in a C array
6 float( string s)                                 Util_GetAltStringCount;
7 string( string s, float c )                      Util_GetAltStringItem;
8 string( string pAlt, float pIndex, string pSet ) Util_SetAltStringItem;
9 string( string pAlt, float pIndex )              Util_DelAltStringItem;
10 // insert a new item after the indexed (to insert an item at the front use -1)
11 string( string pAlt, float pIndex, string pSet ) Util_InsAltStringItem;
12
13 string( string pString )                Util_AltStringPrepare;
14 string( string pAlt, string pPush )     Util_AltStringPush; // strzone
15 string( string pAlt, string pPush )     Util_AltStringPushBack; // strzone
16 string( string pAlt )                   Util_GetAltStringTop;
17 string( string pAlt )                   Util_AltStringPop;      // strzone