.
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
|
/* kyaa.h - macro hacks for handling main() arguments
|
||||||
license: public domain or whatever.
|
This is free and unencumbered software released into the public domain.
|
||||||
documentation is kept separate in kyaa.md
|
Refer to kyaa.md for documentation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#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) {
|
static char *kyaa_skip_spaces(char *str) {
|
||||||
/* iterates str to first non-space character according to the C locale */
|
/* iterates str to first non-space character according to the C locale */
|
||||||
while (*str != '\0') {
|
while (*str != '\0') {
|
||||||
|
|
Loading…
Reference in a new issue