Separating a group of functions into an includable file in C?

Posted by zebra on Stack Overflow See other posts from Stack Overflow or by zebra
Published on 2010-06-01T13:40:59Z Indexed on 2010/06/01 13:43 UTC
Read the original article Hit count: 136

Filed under:
|

I know this is common in most languages, and maybe in C, as well. Can C handle separating several functions out to a separate file and having them be included?

The functions will rely on other include files, as well. I want the code to retain all functionality, but the code will be reused in several C scripts, and if I change it once I do not wish to have to go through every script and change it there, too.

© Stack Overflow or respective owner

Related posts about c

    Related posts about beginner