#include "cgiutil.h" void replace(char *str, char cFrom, char cTo) { for(x=0;str[x];x++) if(str[x] == cFrom) str[x] = cTo; } ...
確定! 回上一頁