Reduce MKDEPS.COM latency from 60ms to 18ms

This commit is contained in:
Justine Tunney 2022-06-11 12:21:42 -07:00
parent e96aceae41
commit 517267a577
5 changed files with 140 additions and 76 deletions

View file

@ -44,6 +44,7 @@ TEST(getargs, test) {
EXPECT_STREQ("dawg", getargs_next(&ga));
EXPECT_STREQ("fun", getargs_next(&ga));
EXPECT_EQ(NULL, getargs_next(&ga));
EXPECT_EQ(NULL, getargs_next(&ga));
getargs_destroy(&ga);
}