我的代码就像一个文本压缩程序,读取普通文本并转换成数字,每个单词都有一个数字。它在DevC ++中编译但不结束,但是它不在Ubuntu 13.10中编译。我遇到了一个错误,比如ubuntu中的标题“undefined reference to`strlwr'”,我的代码有点长,所以我不能在这里发布它,但其中一个错误来自这里:

//operatinal funcitons here


int main()
{

    int i = 0, select;

    char filename[50], textword[40], find[20], insert[20], delete[20];

    FILE *fp, *fp2, *fp3;

    printf("Enter the file name: ");

    fflush(stdout);

    scanf("%s", filename);

    fp = fopen(filename, "r");

    fp2 = fopen("yazi.txt", "w+");

    while (fp == NULL)
    {

        printf("Wrong file name, please enter file name again: ");

        fflush(stdout);

        scanf("%s", filename);

        fp = fopen(filename, "r");

    }

    while (!feof(fp))

    {

         while(fscanf(fp, "%s", textword) == 1)

        {

            strlwr(textword);

            while (!ispunct(textword[i]))
            i++;

            if (ispunct(textword[i]))

            {

                i = 0;

                while (textword[i] != '\0')
                i++;

                i--;

                while (ispunct(textword[i]))
                i--;

                i++;

                i=0;

                while (isalpha(textword[i]))
                i++;

                textword[i] = '\0';

            }

            addNode(textword);

        }

    }

.... //main continues

最佳答案

strlwr()不是标准的c函数。可能它是由一个实现提供的,而您使用的另一个编译器则不是。
您可以自己轻松实现它:

#include <string.h>
#include<ctype.h>

char *strlwr(char *str)
{
  unsigned char *p = (unsigned char *)str;

  while (*p) {
     *p = tolower((unsigned char)*p);
      p++;
  }

  return str;
}

关于c - 未定义对`strlwr'的引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23618316/

10-11 00:22