簡介
函式說明
檢查參數c是否為空格字元,也就是判斷是否為空格(' ')、水平定位字元
('\t')、歸位鍵('\r')、換行('\n')、垂直定位字元('\v')或翻頁('\f')的情況。
返回值
若參數c為空格字元,則返回TRUE,否則返回NULL(0)。
附加說明
此為宏定義,非真正函式。
範例
/*將字元串str[]中內含的空格字元找出,並顯示空格字元的ASCII碼*/
執行
str[4] is a white-space character:32
str[7] is a white-space character:32
str[10] is a white-space character:9 /* \t */
str[16] is a white-space character:10 /* \n */