X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ecere%2Fsrc%2Fcom%2Finstance.ec;h=2e2b9c385fe70af22d9781bc3ed8dfd7b2c3764d;hb=d47c7516d9df53590b91bd3b05e94e1e83a8f529;hp=37f2f87f9b1238fedf7fd3e2a98ccb18b0ad72e9;hpb=6af3e023d9accd7e6bbb38fbf15d3edaea9f8903;p=sdk diff --git a/ecere/src/com/instance.ec b/ecere/src/com/instance.ec index 37f2f87..2e2b9c3 100644 --- a/ecere/src/com/instance.ec +++ b/ecere/src/com/instance.ec @@ -6210,6 +6210,8 @@ static void LoadCOM(Module module) eSystem_RegisterFunction("isupper", "int isupper(int c)", isupper, module, baseSystemAccess); eSystem_RegisterFunction("isprint", "int isprint(int c)", isprint, module, baseSystemAccess); eSystem_RegisterFunction("strtoul", "unsigned long strtoul(const char * nptr, char ** endptr, int base)", strtoul, module, baseSystemAccess); + eSystem_RegisterFunction("strtoll", "int64 strtoll(const char * nptr, char ** endptr, int base)", strtoul, module, baseSystemAccess); + eSystem_RegisterFunction("strtoull", "uint64 strtoull(const char * nptr, char ** endptr, int base)", strtoul, module, baseSystemAccess); }