Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to link multiple implementation files in C

I have a number of .c files, i.e. the implementation files say

  • main.c
  • A.c
  • B.c

Where functions from any of the files can call any function from a different files. My question being, do I need a .h i.e. header file for each of A and B's implementation where each header file has the definition of ALL the functions in A or B.

Also, main.c will have both A.h and B.h #included in it?

If someone can finally make it clear, also, how do I later compile and run the multiple files in the terminal.

Thanks.

like image 990
Kraken Avatar asked Mar 25 '13 18:03

Kraken


People also ask

Can we open multiple files in C?

Using Multiple Files -- C++ It is possible to open more than one file at a time. Simply declare and use a separate stream variable name (fout, fin, fout2, fin2 -- file pointer) for each file.

How do I link two C files in Linux?

Basically linking or including is done by #include<filename> or #include”filename” in C++. Now, as per your question, two c++ files can be linked by using #include”filename. cpp” , if all the files are in same directory. Otherwise specify the directory name before the filename.


2 Answers

Header contents

The header A.h for A.c should only contain the information that is necessary for external code that uses the facilities defined in A.c. It should not declare static functions; it should not declare static variables; it should not declare internal types (types used only in A.c). It should ensure that a file can use just #include "A.h" and then make full use of the facilities published by A.c. It should be self-contained, idempotent (so you can include it twice without any compilation errors) and minimal. You can simply check that the header is self-contained by writing #include "A.h" as the first #include line in A.c; you can check that it is idempotent by including it twice (but that's better done as a separate test). If it doesn't compile, it is not self-contained. Similarly for B.h and B.c.

For more information on headers and standards, see 'Should I use #include in headers?', which references a NASA coding standard, and 'Linking against a static library', which includes a script chkhdr that I use for testing self-containment and idempotency.

Linking

Note that main.o depends on main.c, A.h and B.h, but main.c itself does not depend on the headers.

When it comes to compilation, you can use:

gcc -o program main.c A.c B.c

If you need other options, add them (most flags at the start; libraries at the end, after the source code). You can also compile each file to object code separately and then link the object files together:

gcc -c main.c
gcc -c A.c
gcc -c B.c
gcc -o program main.o A.o B.o
like image 182
Jonathan Leffler Avatar answered Sep 19 '22 15:09

Jonathan Leffler


You must provide an header file just if what is declared in a .c file is required in another .c file.

Generally speaking you can have a header file for every source file in which you export all the functions declared or extern symbols.

In practice you won't alway need to export every function or every variable, just the one that are required by another source file, and you will need to include it just in the required file (and in the source paired with the specific header file).

When trying to understand how it works just think about the fact that every source file is compiled on its own, so if it's going to use something that is not declared directly in its source file, then it must be declared through an header file. In this way the compiler can know that everything exists and it is correctly typed.

like image 45
Jack Avatar answered Sep 20 '22 15:09

Jack