X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=tests%2Fdefs.qh;h=cbe8c98300ec04f2d0cb5a9df039e01c0f507a43;hp=772797a13f43a2e2a5330f3d1c1920740e74d582;hb=031f827da5457ed969bbf66e520105f9600a1229;hpb=9bb586fb5a12d464b71dac24532dfc40b35cf7ee diff --git a/tests/defs.qh b/tests/defs.qh index 772797a..cbe8c98 100644 --- a/tests/defs.qh +++ b/tests/defs.qh @@ -3,17 +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; +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;