这是我的第一个 C 代码。
我基本上有一个包含头文件的主程序,在这个头文件中定义了一个函数,在 header.c 文件中编写了这个函数,在我的主程序文件中使用了这个函数。我也有一个 Make 文件
我希望我在保理方面做对了。
我得到这个神秘的错误,我不太明白,所以我希望你能帮忙。也许我在make文件中链接错误?
jakob@linux-hkem:~/Studium/Sem5/Betriebssysteme/Task1A> make all
cc header.c -o header
/usr/lib64/gcc/x86_64-suse-linux/4.7/../../../../lib64/crt1.o: In function `_start':
/home/abuild/rpmbuild/BUILD/glibc-2.17/csu/../sysdeps/x86_64/start.S:119: undefined reference to `main'
collect2: error: ld returned 1 exit status
make: *** [header] Fehler 1
这是我的代码:
制作文件:
all: ispalindrom
ispalindrom: ispalindrom.c header
gcc -std=c99 -pedantic -Wall -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -o ispalindrom ispalindrom.c header.c
clean: rm -f ispalindrom
主程序文件 (ispalindrom.c)
#include <stdio.h>
#include "header.h"
int main(int argc, char **argv) {
if((checkPalin("Jakob")) == 0){
printf("%s ist ein Palindrom\n", "Jakob");
}
else {
printf("%s ist kein Palindrom\n", "Jakob");
}
if((checkPalin("abcba")) == 0){
printf("%s ist ein Palindrom\n", "abcba");
}
else {
printf("%s ist kein Palindrom\n", "abcba");
}
if(checkPalin("abccba") == 0){
printf("%s ist ein Palindrom\n", "abccba");
}
else {
printf("%s ist kein Palindrom\n", "abccba");
}
return 0;
}
头文件.h
/* header.h */
#ifndef HEADER_H
#define HEADER_H
int checkPalin(char *);
#endif /* HEADER_H */
头文件.c
#include "header.h"
#include <string.h>
/**
* return 0 when String is an palindrom.
*/
int checkPalin(char string[]) {
int start = 0;
int end = strlen(string);
while(start < end) {
if(string[start] != string[end]) {
return -1;
}
else {
start++;
end--;
}
}
return 0;
}