📄 strempty.c
字号:
/************************************************************* * File: lib/strempty.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */#include "string.h"/** strempty(p) returns 1 if p contains nothing but isspace */strempty(p)char *p;{if (!p) return(1);for (;*p;p++) if (!isspace(*p)) return(0);return(1);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -