X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fdefs.qh;h=cbe8c98300ec04f2d0cb5a9df039e01c0f507a43;hb=d9127bf28ad5c1f7626487bbc5f29e72e9912d67;hp=ed8a5df96b552bd1ded7923e5e994f457f120e35;hpb=e8133893a0bd4e1cc469864b3d6f621ed5f3186f;p=xonotic%2Fgmqcc.git diff --git a/tests/defs.qh b/tests/defs.qh index ed8a5df..cbe8c98 100644 --- a/tests/defs.qh +++ b/tests/defs.qh @@ -3,18 +3,19 @@ // builtins. I no event shall you even consider adding // these individually per test. -void (string, ...) print = #1; -string (float) ftos = #2; -entity () spawn = #3; -void (entity) kill = #4; -string (vector) vtos = #5; -void (string) error = #6; -float (vector) vlen = #7; -string (entity) etos = #8; -float (string) stof = #9; -string (...) strcat = #10; -float (string, string) strcmp = #11; -vector (vector) normalize = #12; -float (float) sqrt = #13; -float (float) floor = #14; -float (float, float) pow = #15; +void (string str, ...) print = #1; +string (float val) ftos = #2; +entity () spawn = #3; +void (entity ent) kill = #4; +string (vector vec) vtos = #5; +void (string str) error = #6; +float (vector vec) vlen = #7; +string (entity ent) etos = #8; +float (string str) stof = #9; +string (...) strcat = #10; +float (string str1, string str2) strcmp = #11; +vector (vector vec) normalize = #12; +float (float val) sqrt = #13; +float (float val) floor = #14; +float (float val1, float val2) pow = #15; +vector (string str) stov = #16;