.
This commit is contained in:
parent
2f145eb879
commit
327b8ef28c
2 changed files with 7 additions and 2 deletions
4
kyaa.h
4
kyaa.h
|
@ -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
|
||||
|
|
|
@ -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') {
|
||||
|
|
Loading…
Reference in a new issue