0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-02 15:22:11 +00:00
quakeforge/ruamoko/include/legacy_string.h
Bill Currie 0ad9f559ea [ruamoko] Move some string functions
sprintf, vsprintf and strlen now in rua_strings, and strlen now returns
int like it should.
2020-03-25 00:04:20 +09:00

12 lines
337 B
C

#ifndef __ruamoko_legacy_string_h
#define __ruamoko_legacy_string_h
@extern string ftos (float f);
@extern string vtos (vector v);
@extern float stof (string s);
@extern float charcount (string goal, string s);
@extern string itos (int i);
@extern int stoi (string s);
@extern vector stov (string s);
#endif//__ruamoko_legacy_string_h