This commit is contained in:
Connor Olding 2017-04-02 02:24:19 +00:00
parent 2f145eb879
commit 327b8ef28c
2 changed files with 7 additions and 2 deletions

4
kyaa.h
View File

@ -1,6 +1,6 @@
/* kyaa.h - macro hacks for handling main() arguments
license: public domain or whatever.
documentation is kept separate in kyaa.md
This is free and unencumbered software released into the public domain.
Refer to kyaa.md for documentation.
*/
#pragma once

View File

@ -1,3 +1,8 @@
/* kyaa_extra.h - extensions to kyaa for parsing arguments.
This is free and unencumbered software released into the public domain.
Refer to kyaa.md for documentation.
*/
static char *kyaa_skip_spaces(char *str) {
/* iterates str to first non-space character according to the C locale */
while (*str != '\0') {