📄 utility.cpp
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -