summaryrefslogtreecommitdiff
path: root/src/common/nullpo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/nullpo.c')
-rw-r--r--src/common/nullpo.c14
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ƒ`ƒFƒbƒN ‹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‚΅Œό‚―ƒ‰ƒbƒp)
+ * 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‚΅‚½‚©Šm”F
+ // ζœ€εΎŒγ«ζ”Ήθ‘Œγ—γŸγ‹η’Ίθͺ
if (fmt[strlen (fmt) - 1] != '\n')
printf ("\n");
}
}
printf ("--- end nullpo info ----------------------------------------\n");
- // ‚±‚±‚η‚ΕnullpoƒƒO‚πƒtƒ@ƒCƒ‹‚ɏ‘‚«o‚Ή‚½‚η
- // ‚ά‚Ζ‚ί‚Δ’ρo‚Ε‚«‚ι‚Θ‚ΖŽv‚Α‚Δ‚’‚½‚θB
+ // ここらでnullpoγƒ­γ‚°γ‚’γƒ•γ‚‘γ‚€γƒ«γ«ζ›Έγε‡Ίγ›γŸγ‚‰
+ // まとめて提出できるγͺγ¨ζ€γ£γ¦γ„γŸγ‚Šγ€‚
}