In the header file data.h i got:
In the code file server.c i got:
And else it is only used in a function call:
But i get this error when compiling:
I got data.h included in server.c:
data.h:
Thanks.
Thanks so much, it seems clear now. I got another question about header files. Say i got checkr.h with:
and the function in checkr.c:
From what you say i think i would need to use "extern" in checkr.h ? Can i also use it in the main file (called server.c) ? I know that i don't have to, but it helps me a bit to keep track of the functions without opening and closing files all the time (or using :vsplit). I think it has to do with definition and declaration? I read about it quite often, but never really understand it and usually forget it soon.
Thanks. Your explanation and example makes it more clear (also thanks for pointing out it may not be best praxis, but for now i just try to understand the general idea).
I think you say that: header files are (or can be ) used _instead of declaring the variable foo as extern in File2 and File3. foo is defined in File1 (and storage is set aside for it). File1 includes myheader.h too, and if foo is declared (File2 and File3) or defined (File1) is decided by the #ifndef Mainfile and #define Mainfile in File1.
I read in §The C Programming langauge"; (As "C A modern approach" was not clear on the subject) and in chapter 1 "External variables and scope" (page 33 for me) it says the following (or that is what i understand):
- a definition creates a variable and sets aside storage
- a declaration only announces the nature of a variable
- extern says that the definition is elsewhere and only declares
- header files include declarations, not definitions
Is both correct (What i understood of your post and what i understood of the book)?
I think i am getting closer to understand it. Let me rethink and read again.Really thanks.
From what you say i think i would need to use "extern" in checkr.h ?
If you don't define a function's contents with { } right then and there, it'll be assumed to be extern. This is very unlike variables, which never assume they're external unless you say so.
extern used to be a bigger deal for functions when there were many methods of linking -- there could be several kinds of extern functions, and you'd use extern to tell the compiler which they are with extern dllexport functionname(); or what have you. Sometimes this is still important when mixing C with other languages, to guarantee your function calls are generated in a way foreign code can understand.
I've been struggling with this one for quite a while and cannot seem to find a solution for this find/replace scenario. Perhaps I'm getting rusty.
I have a file that contains a number of metrics (exactly 3 fields per line) from a few appliances that are collected in parallel. To identify the... (3 Replies)
I saw a header (.h) file with mixture of "regular" function declarations and other extern function declarations. As I was told all function declarations are implicitly external and the extern on functions declarations is superfluous. Here my focus is on function declaration, not variable yet.
int... (2 Replies)
Friends,
I need help with the following in UNIX.
Merge all csv files in one folder considering only 1 header row and ignoring header of all other files.
FYI - All files are in same format and contains same headers.
Thank you (4 Replies)
Hi Experts,
In our project we have requirement where in we have to compare header of one file with header in the parameter file.
There are 20 files which we ftp from one site. All this files have different header.
We are comapring this file with our parameter file(which is having the header... (2 Replies)
Why this is happening when both of them compiled together and run?
I am getting segmentation fault SIGSEGV.
File1.c:
int arr;
File2.c:
extern int *arr;
int main() {
arr = 100;
} (3 Replies)
Hi,
I'm searching for an solution for the following problem.
I want fetch some mails via pop3 from a@a.com with fetchmail.
That works perfectly. Now any incoming mail should forwarded to b@b.com via smtp obv. But I don't know how to configure that. All online tutorials describe forwarding to... (0 Replies)
Hi there, I'm having a bit of a strange problem which I would appreciate some help with.
The Problem:
I have two external hard drives, but I'm borrowing one off my parents to copy data too (one of mine, which is identical to theirs - WD MyBook 300g - is on its way out).
Fedora 9 recognizes... (3 Replies)
say i have these many file in a directory named exam.
1)/exam/newfolder/link.txt.
2)/exam/newfolder1/
and i create a tar say exam.tar
well the problem is,
when i read the tar file i dont find any metadata about the directories,as you cannot create a tar containig empty directories.
on the... (2 Replies)
Hi,
Please let me know if the extern keyword is necessary for using functions which is defined and declared in another file and and used in a different file where both these files are linked together.
thanks (8 Replies)