quakeforge/ruamoko/lib/legacy_string.r
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

9 lines
296 B
R

#include <string.h>
string (float f) ftos = #26;
string (vector v) vtos = #27;
float (string s) stof = #81;
float (string goal, string s) charcount = #0x000f0000 + 101;
string (int i) itos = #0x000f0000 + 112;
int (string s) stoi = #0x000f0000 + 113;
vector (string s) stov = #0x000f0000 + 114;