我正在尝试制作一个函数,它将指向字符数组的指针、它的大小和 1 作为参数。
#include<stdio.h>
#include<string.h>
#define FIRST_LINE 1
#define DONE 2
#define MORE_LINES 3
#define EXTRA 4
int a_fun(int, char *, size_t);
main()
{
char que[20];
int status=0;
status=a_fun(FIRST_LINE,que, sizeof(que));
fputs(que,stdout);
printf("\nStatus:\t %d\n",status);
return 0;
}
int a_fun(int lnum, char *str, size_t sz)
{
char *temp, ch, *end="!exit";
if(lnum==FIRST_LINE)
{
if (fgets (str, sz, stdin) == NULL)
{
printf("\nEntered nothing at all. (Type !exit to terminate)\n");
return FIRST_LINE;
}
for(;(*str!='\0'||*end!='\0');str++,end++)
{
if(!*str) if(!*end) return DONE;
}
if(strlen(str)>=sz)
{
while((ch=getchar())!='\n'); //cleaning buffer
return EXTRA;
}
return MORE_LINES;
}
}
我想通过输入“!exit”来退出输入,但我不能这样做。我已经尝试过使用if(strcmp(str,"!exit")==0) return DONE;
和使用if(str=="!exit") return DONE;
最后我尝试逐个字符地比较这两个字符,但一切都在脉络中。请尝试给我一些解决方案。
要输入更多行,我们可以在 a_fun() 中使用条件块,所以基本上现在它只是一个行输入函数,我的问题是在两者之间终止输入过程(如果它进入多行状态)。
如果你能给我任何关于使这个函数更安全的建议,除了我原来的问题,那将不胜感激,因为我将在我的 CGI 代码中为我的网站使用这个函数。