From 327b8ef28c5d5adba5b6ee14015c70e4670e6db0 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Sun, 2 Apr 2017 02:24:19 +0000 Subject: [PATCH] . --- kyaa.h | 4 ++-- kyaa_extra.h | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/kyaa.h b/kyaa.h index 5efdda8..2f825a3 100644 --- a/kyaa.h +++ b/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 diff --git a/kyaa_extra.h b/kyaa_extra.h index 0724326..77869f4 100644 --- a/kyaa_extra.h +++ b/kyaa_extra.h @@ -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') {