X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=tests%2Fdefs.qh;fp=tests%2Fdefs.qh;h=f6ea408ad9ed7f26ff6b812f07a7de719dd82095;hp=ed8a5df96b552bd1ded7923e5e994f457f120e35;hb=161bbec262545b883c983e1810c942116a3bebdc;hpb=c33755b0077bc74742c67a03aa2a0a11f10085da diff --git a/tests/defs.qh b/tests/defs.qh index ed8a5df..f6ea408 100644 --- a/tests/defs.qh +++ b/tests/defs.qh @@ -3,18 +3,18 @@ // 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;