mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
b3f76e1e48
temporary strings) and fix the game load/save menus.
16 lines
538 B
R
16 lines
538 B
R
#include "string.h"
|
|
|
|
string (float f) ftos = #26;
|
|
string (vector v) vtos = #27;
|
|
float (string s) stof = #81;
|
|
float (string s) strlen = #0x000f0000 + 100;
|
|
float (string goal, string s) charcount = #0x000f0000 + 101;
|
|
string (...) sprintf = #0x000f0000 + 109;
|
|
string (integer i) itos = #0x000f0000 + 112;
|
|
integer (string s) stoi = #0x000f0000 + 113;
|
|
vector (string s) stov = #0x000f0000 + 114;
|
|
|
|
string (void) str_new = #0;
|
|
string (string str) str_free = #0;
|
|
string (string dst, string src) str_copy = #0;
|
|
string (string str) str_clear = #0;
|