diff options
Diffstat (limited to 'src/common/nullpo.c')
-rw-r--r-- | src/common/nullpo.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/nullpo.c b/src/common/nullpo.c index daeca9f..3205293 100644 --- a/src/common/nullpo.c +++ b/src/common/nullpo.c @@ -2,13 +2,13 @@ #include <stdarg.h> #include <string.h> #include "nullpo.h" -// #include "logs.h" // zΞ΅Δέι +// #include "logs.h" // εΈη³γγ¦γΏγ static void nullpo_info_core (const char *file, int line, const char *func, const char *fmt, va_list ap); /*====================================== - * Null`FbN yΡ ξρoΝ + * Nullγγ§γγ― εγ³ ζ
ε ±εΊε *-------------------------------------- */ int nullpo_chk_f (const char *file, int line, const char *func, @@ -36,7 +36,7 @@ int nullpo_chk (const char *file, int line, const char *func, } /*====================================== - * nullpoξρoΝ(OΔo΅ό―bp) + * nullpoζ
ε ±εΊε(ε€ι¨εΌεΊγεγγ©γγ) *-------------------------------------- */ void nullpo_info_f (const char *file, int line, const char *func, @@ -55,7 +55,7 @@ void nullpo_info (const char *file, int line, const char *func) } /*====================================== - * nullpoξρoΝ(Main) + * nullpoζ
ε ±εΊε(Main) *-------------------------------------- */ static void nullpo_info_core (const char *file, int line, const char *func, @@ -74,13 +74,13 @@ static void nullpo_info_core (const char *file, int line, const char *func, { vprintf (fmt, ap); - // ΕγΙόs΅½©mF + // ζεΎγ«ζΉθ‘γγγη’Ίθͺ if (fmt[strlen (fmt) - 1] != '\n') printf ("\n"); } } printf ("--- end nullpo info ----------------------------------------\n"); - // ±±ηΕnullpoOπt@CΙ«oΉ½η - // άΖίΔρoΕ«ιΘΖvΑΔ’½θB + // γγγγ§nullpoγγ°γγγ‘γ€γ«γ«ζΈγεΊγγγ + // γΎγ¨γγ¦ζεΊγ§γγγͺγ¨ζγ£γ¦γγγγ } |