📄 remove.c
字号:
#include <precomp.h>
#include <tchar.h>
#define NDEBUG
#include <internal/debug.h>
/*
* @implemented
*/
int _tremove(const _TCHAR *fn)
{
int result = 0;
DPRINT(MK_STR(_tremove)"('%"sT"')\n", fn);
if (!DeleteFile(fn))
result = -1;
DPRINT("%d\n", result);
return result;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -