utility.cpp
来自「The ITU-T(Telecommunication Standardizat」· C++ 代码 · 共 38 行
CPP
38 行
#include "stdafx.h"
const char strDebugFile[] = "debug.txt";
void ResetLog()
{
FILE * fp = fopen( strDebugFile, "wt");
fprintf(fp, "\n\nstart logging:\n\n");
fclose(fp);
}
void Log(char *string)
{
FILE * fp = fopen( strDebugFile, "at");
if (fp != NULL)
{
fprintf( fp, string);
}
fclose(fp);
}
void Log(char *string, char *p1)
{
FILE * fp = fopen( strDebugFile, "at");
if (fp != NULL)
fprintf( fp, string, p1);
fclose(fp);
}
void Log(char *string, int n1)
{
FILE * fp = fopen( strDebugFile, "at");
if (fp != NULL)
fprintf( fp, string, n1);
fclose(fp);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?