473,396 Members | 1,655 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Is there a real need to use keyword static with functions?

Hi everyone

Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?

Many textbooks avoid to discuss this matter and/or discuss only the
usage of static functions. I've been programming for years and I never
felt a real need for the "static approach for functions".

I don't know if this is a trivial matter since the reserved word
exists. :)
Or it exists for some other purpose I can't figure out.

What did I have missed? :)

Thanks in advance for answers

Mar 5 '07 #1
32 2995
lc**********@gmail.com wrote:
Hi everyone

Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?
Yes, otherwise the functions have global scope and pollute the global
namespace. You may not want to export those symbols and you, or the
user of you code, will run into link problems if the same name is used
in more than one source file.

--
Ian Collins.
Mar 5 '07 #2
On Mar 5, 9:10 pm, lcdgoncal...@gmail.com wrote:
Many textbooks avoid to discuss this matter and/or discuss only the
usage of static functions. I've been programming for years and I never
felt a real need for the "static approach for functions".
That's sad.

Do you have a database of all functions in your programs to make sure
that you don't use the same function name twice?

Mar 5 '07 #3
lc**********@gmail.com writes:
Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?
Yes. If two functions are defined without static, but with the
same name, in different translation units, then the result is
undefined behavior. Using static avoids this undefined behavior.
--
"C has its problems, but a language designed from scratch would have some too,
and we know C's problems."
--Bjarne Stroustrup
Mar 5 '07 #4
In article <87************@blp.benpfaff.org>,
Ben Pfaff <bl*@cs.stanford.eduwrote:
>lc**********@gmail.com writes:
>Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?

Yes. If two functions are defined without static, but with the
same name, in different translation units, then the result is
undefined behavior. Using static avoids this undefined behavior.
Again, you guys are "talking around the problem". What you should be
reacting to is the implication (i.e., the OP's delusion) that neglecting
to declare a prototype in a header file somehow "hides" global symbols
found in translation units. I.e., makes it as if they had been declared
(gasp!) static.

Well, to the OP, 'taint so.

Mar 5 '07 #5
On Mar 5, 1:10 pm, lcdgoncal...@gmail.com wrote:
Hi everyone

Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?

Many textbooks avoid to discuss this matter and/or discuss only the
usage of static functions. I've been programming for years and I never
felt a real need for the "static approach for functions".

I don't know if this is a trivial matter since the reserved word
exists. :)
Or it exists for some other purpose I can't figure out.

What did I have missed? :)

Thanks in advance for answers
Functions should always be made static if they are not intended as end-
user available routines.
Imagine some function called :
void HelperInitializer(struct goombah * foo);
and it is only supposed to be called by *you* the programmer. It is
to be called only once and if it were to be called again, it would
reset the state of some of your objects in a way not intended. It is
essential to define this function as static or it *will* be available
to the end-user of the library whether you like it or not.

There are lots of other sensible reasons for static (some of which are
mentioned else-thread).

The author of that book wouldn't have been Herbert Schildt, would it?

Mar 5 '07 #6
In article <11*********************@c51g2000cwc.googlegroups. com>,
<lc**********@gmail.comwrote:
>Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?
Bear in mind that there's nothing magic about .h files. They're just
some C code - usually, but not necessarily declarations - that can be
handily included in other files. So the fact that a function isn't
declared in a .h file doesn't stop some other part of the program from
using it, or from inadvertently using the same name for something else
(which may be detected when you link the program, or may just cause
some peculiar failure later on).

-- Richard
--
"Consideration shall be given to the need for as many as 32 characters
in some alphabets" - X3.4, 1963.
Mar 5 '07 #7
lc**********@gmail.com wrote:
Hi everyone

Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?
Not necessary, but good practice.

If you use static then you can have two C files which both have
their own definition of my_function and the compiler will accept
it and do the right thing.

If you don't use static you will get a link time error about two
definitions of my_function.

HTH,
Erik
--
+-----------------------------------------------------------+
Erik de Castro Lopo
+-----------------------------------------------------------+
Failure is not an option. It comes bundled with your Microsoft
product.
Mar 5 '07 #8
Hi everyone,
Is there any real need for keyword "static inline" with
functions.

--pradeep.
On Mar 6, 3:59 am, Erik de Castro Lopo <e...@mega-nerd.comwrote:
lcdgoncal...@gmail.com wrote:
Hi everyone
Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?

Not necessary, but good practice.

If you use static then you can have two C files which both have
their own definition of my_function and the compiler will accept
it and do the right thing.

If you don't use static you will get a link time error about two
definitions of my_function.

HTH,
Erik
--
+-----------------------------------------------------------+
Erik de Castro Lopo
+-----------------------------------------------------------+
Failure is not an option. It comes bundled with your Microsoft
product.

Mar 6 '07 #9
pradeep wrote:

Please don't top-post. Your reply should be below or interspersed with
the material you quote. Irrelevant text can be deleted, particularly
sig blocks that follow a '-- ' marker.
[fixed]
On Mar 6, 3:59 am, Erik de Castro Lopo <e...@mega-nerd.comwrote:
lcdgoncal...@gmail.com wrote:
Hi everyone
Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?
Not necessary, but good practice.

If you use static then you can have two C files which both have
their own definition of my_function and the compiler will accept
it and do the right thing.

If you don't use static you will get a link time error about two
definitions of my_function.
Hi everyone,
Is there any real need for keyword "static inline" with
functions.
Well, static's effect has been explained in this thread. The inline
qualifier is a hint to the compiler to speed up access to the
function, if possible. Generally, it's used for very small functions
that're called in tight loops. The compiler may or may not actually
embed the function's body into each place where it's invoked. There
may be other methods of speeding up access to it.

inline is a C99 feature, unlike static.

Mar 6 '07 #10

pradeep wrote:
Hi everyone,
Is there any real need for keyword "static inline" with
functions.
BTW, using inline has many caveats that you need to be aware of.
>From the working draft of ISO C Standard:
6.7.4 Function specifiers
Syntax
1 function-specifier:
inline
Constraints
2 Function specifiers shall be used only in the declaration of an
identifier for a function.
3 An inline definition of a function with external linkage shall not
contain a definition of a
modifiable object with static storage duration, and shall not contain
a reference to an
identifier with internal linkage.
4 In a hosted environment, the inline function specifier shall not
appear in a declaration
of main.
Semantics
5 A function declared with an inline function specifier is an inline
function. The
function specifier may appear more than once; the behavior is the
same as if it appeared
only once. Making a function an inline function suggests that calls
to the function be as
fast as possible.118) The extent to which such suggestions are
effective is
implementation-defined.119)
6 Any function with internal linkage can be an inline function. For a
function with external
linkage, the following restrictions apply: If a function is declared
with an inline
function specifier, then it shall also be defined in the same
translation unit. If all of the
file scope declarations for a function in a translation unit include
the inline function
specifier without extern, then the definition in that translation unit
is an inline
definition. An inline definition does not provide an external
definition for the function,
and does not forbid an external definition in another translation
unit. An inline definition
provides an alternative to an external definition, which a translator
may use to implement
any call to the function in the same translation unit. It is
unspecified whether a call to the
function uses the inline definition or the external definition.120)

Mar 6 '07 #11
On 5 Mar 2007 13:10:47 -0800, lc**********@gmail.com wrote:
>Hi everyone

Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?

Many textbooks avoid to discuss this matter and/or discuss only the
usage of static functions. I've been programming for years and I never
felt a real need for the "static approach for functions".

I don't know if this is a trivial matter since the reserved word
exists. :)
Or it exists for some other purpose I can't figure out.

What did I have missed? :)

Thanks in advance for answers
In C, functions can have one of two types of linkage: external or
internal.

A function with external linkage can be defined only once and called
by multiple translation units, while a function with internal linkage
can be defined once for each translation unit and called (directly)
only by the translation unit that defines it (separate translation
units that define the same function with internal linkage effectively
get their own copy of the function definition).

The keyword static, when used in a function prototype or definition,
implies internal linkage, while the keyword extern (or lack of both
extern and static) in a function prototype or definition, implies
external linkage

All functions should have a prototype in scope, with the exception of
main().

Function prototypes declared in a .h file should not be declared as
static; you can declare them as extern, but that's not necessary.

/* foo.h */
static void foo1(void); /* bad */
void foo2(void); /* okay */
extern foo3(void); /* okay, though use of extern is superfluous */

Function prototypes declared in a .c file should use static. The
function definition whose prototype is declared with static can also
use static (but not extern), but that's not necessary, although it's
good practice.

/* foo.c */
static void foo4(void);

#ifdef DEFS_WITH_STATIC
static void foo4(void) /* okay */
{
/* implement foo4 */
}
#else
void foo4(void) /* okay */
{
/* implement foo4 */
}
#endif

Likewise, function definitions whose prototype is not declared with
static can also use extern (but not static), but that's not necessary,
although it's considered acceptable by some and suspect by others
(PC-lint falls into the latter category).

/* foo.c */
#include "foo.h"
#ifdef DEFS_WITH_EXTERN
extern void foo2(void) /* okay */
{
/* implement foo2 */
}
#else
void foo2(void) /* okay */
{
/* implement foo2 */
}
#endif

One argument for not using extern with function definitions is that
you can "grep" a .c source file for "extern" and expect to find no
matches.

Regards
--
jay

It's here!
http://www.microsoft.com/windows/products/windowsvista/
Mar 6 '07 #12
santosh wrote:
pradeep wrote:

Please don't top-post. Your reply should be below or interspersed
with the material you quote. Irrelevant text can be deleted,
particularly sig blocks that follow a '-- ' marker.
[fixed]
.... snip ...

IIRC he's been told this before, and ignored it. Unless there are
multiple pradeeps extant, he is due to be plonked.

--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>

"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews
Mar 6 '07 #13
On 5 Mar 2007 13:41:06 -0800, "user923005" <dc*****@connx.comwrote:
>Functions should always be made static if they are not intended as end-
user available routines.
IOW, static functions in C serve the same purpose as 'private'
funtions are in other languages.

Best wishes,
Roland Pibinger
Mar 6 '07 #14

Roland Pibinger wrote:
On 5 Mar 2007 13:41:06 -0800, "user923005" <dc*****@connx.comwrote:
Functions should always be made static if they are not intended as end-
user available routines.

IOW, static functions in C serve the same purpose as 'private'
funtions are in other languages.
Maybe in some senses of private. For example, C++'s private member
functions are quite different from C's static qualified functions.

Mar 6 '07 #15
OK, friends. Thanks for the explanations.

Mar 6 '07 #16
On 5 mar, 18:28, "christian.bau" <christian....@cbau.wanadoo.co.uk>
wrote:
On Mar 5, 9:10 pm, lcdgoncal...@gmail.com wrote:
Many textbooks avoid to discuss this matter and/or discuss only the
usage ofstaticfunctions. I've been programming for years and I never
felt arealneedfor the "staticapproach for functions".

That's sad.

Do you have a database of all functions in your programs to make sure
that you don't use the same function name twice?
Dear Christian

Although it's clear for me now that "staticizing" functions avoids
exporting uncessessary symbols to linker, it's quite unlikely that one
can possibly duplicate a name of a temporary function.
Specially if one give good names for them, with a prefix in a way
similar to Gtk package and similars.

Anyway, I've learned the lesson. Tnx for the advice

Mar 6 '07 #17
On 5 mar, 18:41, "user923005" <dcor...@connx.comwrote:
On Mar 5, 1:10 pm, lcdgoncal...@gmail.com wrote:


Hi everyone
Istherearealneedto use keywordstaticwith functions, if we
simply don't declare their prototypes in .h file?
Many textbooks avoid to discuss this matter and/or discuss only the
usage ofstaticfunctions. I've been programming for years and I never
felt arealneedfor the "staticapproach for functions".
I don't know if this is a trivial matter since the reserved word
exists. :)
Or it exists for some other purpose I can't figure out.
What did I have missed? :)
Thanks in advance for answers

Functions should always be madestaticif they are not intended as end-
user available routines.
Imagine some function called :
void HelperInitializer(struct goombah * foo);
and it is only supposed to be called by *you* the programmer. It is
to be called only once and if it were to be called again, it would
reset the state of some of your objects in a way not intended. It is
essential to define this function asstaticor it *will* be available
to the end-user of the library whether you like it or not.
OK. I got it. It's clear to me now.
>
Thereare lots of other sensible reasons forstatic(some of which are
mentioned else-thread).
Yep. :)
>
The author of that book wouldn't have been Herbert Schildt, would it?
Well... it's time to study a little more. I have a copy of HS's book
somewhere. :) Perhaps I've missed something the first time I read it.

Thanks for your helpful hint. Regards

Mar 6 '07 #18
On 6 Mar, 14:35, lcdgoncal...@gmail.com wrote:
On 5 mar, 18:41, "user923005" <dcor...@connx.comwrote:

The author of that book wouldn't have been Herbert Schildt, would it?

Well... it's time to study a little more. I have a copy of HS's book
somewhere. :) Perhaps I've missed something the first time I read it.
The recommendation from the group would probably be to ditch HS's book
- he's not regarded in great esteem round here...

Mar 6 '07 #19
>>>>"l" == lcdgoncalves <lc**********@gmail.comwrites:

lOn 5 mar, 18:41, "user923005" <dcor...@connx.comwrote:
> The author of that book wouldn't have been Herbert Schildt,
would it?
lWell... it's time to study a little more. I have a copy of HS's
lbook somewhere. :) Perhaps I've missed something the first time
lI read it.

If you did, that can only be a good thing, as Herbert Schildt gets quite
a bit wrong. Your best bet is to burn that book and use a better one.

Charlton

--
Charlton Wilbur
cw*****@chromatico.net
Mar 6 '07 #20
In article <11**********************@j27g2000cwj.googlegroups .com>,
<ma**********@pobox.comwrote:
>On 6 Mar, 14:35, lcdgoncal...@gmail.com wrote:
>On 5 mar, 18:41, "user923005" <dcor...@connx.comwrote:

The author of that book wouldn't have been Herbert Schildt, would it?

Well... it's time to study a little more. I have a copy of HS's book
somewhere. :) Perhaps I've missed something the first time I read it.

The recommendation from the group would probably be to ditch HS's book
- he's not regarded in great esteem round here...
"Ditch" is a bit weak. Try "Burn it and post videos".
dave

--
Dave Vandervies dj******@csclub.uwaterloo.ca
It was worthwhile to complain to you, since I know you are bright enough to
understand the point. (Foul-mouthed non-regs simply get plonked without
notice; it's a cost-benefit trade-off!) --Richard Heathfield in comp.lang.c
Mar 6 '07 #21
On Mar 5, 9:41 pm, "user923005" <dcor...@connx.comwrote:
On Mar 5, 1:10 pm, lcdgoncal...@gmail.com wrote:
Hi everyone
Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?
Many textbooks avoid to discuss this matter and/or discuss only the
usage of static functions. I've been programming for years and I never
felt a real need for the "static approach for functions".
I don't know if this is a trivial matter since the reserved word
exists. :)
Or it exists for some other purpose I can't figure out.
Functions should always be made static if they are not intended as end-
user available routines.
Not quite true: if you have are building a library, you may have
functions in different translation units that you want to be
accessible from all functions within the library, but not
visible outside the library. Declaring such functions
static would limit their scope to the containing translation
unit. In this case, you need to use other "linker magic"
to hide the symbols.

--
Bill Pursell

Mar 6 '07 #22
lc**********@gmail.com wrote:
<dcor...@connx.comwrote:
.... snip ...
>>
The author of that book wouldn't have been Herbert Schildt, would it?

Well... it's time to study a little more. I have a copy of HS's book
somewhere. :) Perhaps I've missed something the first time I read it.
To get maximum value, find the book and put it to good use as
kindling for the wood stove. DO NOT open it. Then buy something
written by someone who knows his subject.

--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>

"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews
Mar 6 '07 #23
Bill Pursell wrote:
>
.... snip ...
>
Not quite true: if you have are building a library, you may have
functions in different translation units that you want to be
accessible from all functions within the library, but not visible
outside the library. Declaring such functions static would limit
their scope to the containing translation unit. In this case,
you need to use other "linker magic" to hide the symbols.
Very simple:

/* file a.c */
#include "a.h"
#include "alocals.h"
int foo(void) { /* foocode */ }
int bar(void) { /* barcode */ }

/* file a.h */
int foo(void);

/* file alocals.h */
int bar(void);

/* file library.h */
#include "a.h"

The linker doesn't matter.

--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>

"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews
Mar 7 '07 #24
On Mar 6, 10:10 am, lcdgoncal...@gmail.com wrote:
Hi everyone

Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?
Another benefit of marking the function 'static' is that the
compiler can optimise it, since it knows exactly when and how
it is being called. For example it can leave out unused code
branches, use more registers, or even inline the entire
function body.

Mar 7 '07 #25
CBFalconer wrote, On 06/03/07 22:42:
Bill Pursell wrote:
... snip ...
>Not quite true: if you have are building a library, you may have
functions in different translation units that you want to be
accessible from all functions within the library, but not visible
outside the library. Declaring such functions static would limit
their scope to the containing translation unit. In this case,
you need to use other "linker magic" to hide the symbols.

Very simple:

/* file a.c */
#include "a.h"
#include "alocals.h"
int foo(void) { /* foocode */ }
int bar(void) { /* barcode */ }

/* file a.h */
int foo(void);

/* file alocals.h */
int bar(void);

/* file library.h */
#include "a.h"

The linker doesn't matter.
That does not fully hide it. If the user declares a function or variable
with external linkage named bar it still invokes undefined behaviour and
can cause problems, or the user could find out via some other means that
bar exists, write a prototype for it (or not) and call it.

The linker does still matter.
--
Flash Gordon
Mar 7 '07 #26
lc**********@gmail.com writes:
[...]
Although it's clear for me now that "staticizing" functions avoids
exporting uncessessary symbols to linker, it's quite unlikely that one
can possibly duplicate a name of a temporary function.
Specially if one give good names for them, with a prefix in a way
similar to Gtk package and similars.
You're asking the wrong question. The question isn't "Why should I
use static?"; it's "Why *shouldn't* I use static?'.

If I were designing the language from scratch today, "static" would be
the default; function names would not be exported beyond file scope
unless you specifically asked for it, probably with an additional
keyword. (Or maybe I'd use some other encapsulation mechanism.)

Declare functions as static unless there's a specific reason not to do
so. ("main" is an odd case; it's usual not to declare it as static.)

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Mar 7 '07 #27
Keith Thompson wrote:
>
Declare functions as static unless there's a specific reason not to do
so. ("main" is an odd case; it's usual not to declare it as static.)
I would be interesting trying to build an application if it were!

--
Ian Collins.
Mar 7 '07 #28
"Old Wolf" <ol*****@inspire.net.nzwrote in message
news:11**********************@t69g2000cwt.googlegr oups.com...
On Mar 6, 10:10 am, lcdgoncal...@gmail.com wrote:
>Hi everyone

Is there a real need to use keyword static with functions, if we
simply don't declare their prototypes in .h file?

Another benefit of marking the function 'static' is that the
compiler can optimise it, since it knows exactly when and how
it is being called. For example it can leave out unused code
branches, use more registers, or even inline the entire
function body.
Some compilers may do those things anyways, though if the function is _not_
static then they must still generate the "normal" code in case the function
is called from another translation unit (unless the compiler has what is
often termed "whole-program optimization" and can prove that doesn't occur).

S

--
Stephen Sprunk "Those people who think they know everything
CCIE #3723 are a great annoyance to those of us who do."
K5SSS --Isaac Asimov
--
Posted via a free Usenet account from http://www.teranews.com

Mar 7 '07 #29
On Mar 6, 10:42 pm, CBFalconer <cbfalco...@yahoo.comwrote:
Bill Pursell wrote:

... snip ...
Not quite true: if you have are building a library, you may have
functions in different translation units that you want to be
accessible from all functions within the library, but not visible
outside the library. Declaring such functions static would limit
their scope to the containing translation unit. In this case,
you need to use other "linker magic" to hide the symbols.

Very simple:

/* file a.c */
#include "a.h"
#include "alocals.h"
int foo(void) { /* foocode */ }
int bar(void) { /* barcode */ }

/* file a.h */
int foo(void);

/* file alocals.h */
int bar(void);

/* file library.h */
#include "a.h"

The linker doesn't matter.
In this case, unless I'm misunderstanding your
post, you have exactly one translation unit which
contains definitions for the functions foo() and
bar(), so this doesn't quite address the situation
I'm describing, which is:

/* file a.c */
int foo(int) __attribute__((hidden)); (1)
int foo(int x) { /* foo code calls bar*/ }

/* file b.c */
int bar(int) __attribute__((hidden));
int bar(int x) { /* bar code calls foo*/ }

build library libfoobar.so from a.c and b.c
/* file c.c */
int main(void) { /* can't call foo. */ }

The intention is for foo and bar to only
be visible from functions within the library,
but not be restrained to the translation unit
in which they are defined. Declaring them
static would make foo invisible to bar.

(1) I have no idea how portable the
"__attribute__((hidden))" is--it works with gcc

--
Bill Pursell

Mar 7 '07 #30
On Mar 7, 8:29 pm, "Bill Pursell" <bill.purs...@gmail.comwrote:
On Mar 6, 10:42 pm, CBFalconer <cbfalco...@yahoo.comwrote:
Very simple:
/* file a.c */
#include "a.h"
#include "alocals.h"
int foo(void) { /* foocode */ }
int bar(void) { /* barcode */ }
/* file a.h */
int foo(void);
/* file alocals.h */
int bar(void);
/* file library.h */
#include "a.h"
The linker doesn't matter.

In this case, unless I'm misunderstanding your
post, you have exactly one translation unit which
contains definitions for the functions foo() and
bar(), so this doesn't quite address the situation
I'm describing, which is:

/* file a.c */
int foo(int) __attribute__((hidden)); (1)
int foo(int x) { /* foo code calls bar*/ }

/* file b.c */
int bar(int) __attribute__((hidden));
int bar(int x) { /* bar code calls foo*/ }

build library libfoobar.so from a.c and b.c
/* file c.c */
int main(void) { /* can't call foo. */ }

The intention is for foo and bar to only
be visible from functions within the library,
but not be restrained to the translation unit
in which they are defined. Declaring them
static would make foo invisible to bar.
There's always the (blasphemous) possibility of #include-ing a .c
file, so in your case b.c would #include a.c containing a "static int
foo()". It should work (at least in simple cases as yours above), but
it's ugly and comes with a myriad of problems so I probably shouldn't
have mentioned it in the first place.
--
WYCIWYG - what you C is what you get

Mar 7 '07 #31
On Mar 7, 8:14 pm, "matevzb" <mate...@gmail.comwrote:
"Bill Pursell" <bill.purs...@gmail.comwrote:
CBFalconer <cbfalco...@yahoo.comwrote:
The linker doesn't matter.
In this case, unless I'm misunderstanding your
post, you have exactly one translation unit which
contains definitions for the functions foo() and
bar(), so this doesn't quite address the situation
I'm describing, which is:
<snip>
The intention is for foo and bar to only
be visible from functions within the library,
but not be restrained to the translation unit
in which they are defined. Declaring them
static would make foo invisible to bar.

There's always the (blasphemous) possibility of #include-ing a .c
file, so in your case b.c would #include a.c containing a "static int
foo()". It should work (at least in simple cases as yours above), but
it's ugly and comes with a myriad of problems so I probably shouldn't
have mentioned it in the first place.
That's great, but if you #include a file then you have a
single translation unit. Unless I'm using a different
definition that everyone else:

"a single source file submitted to the compiler along with all files
included by the compilation of that single source file (technically,
the output of the preprocessor)."

If you can't build a seperate .o, then it's not a seperate
translation unit.
Mar 7 '07 #32
"Bill Pursell" <bi**********@gmail.comwrites:
That's great, but if you #include a file then you have a
single translation unit. Unless I'm using a different
definition that everyone else:

"a single source file submitted to the compiler along with all files
included by the compilation of that single source file (technically,
the output of the preprocessor)."
That's the right definition. Here's exactly what C99 says, for
the record:

A source file together with all the headers and source files
included via the preprocessing directive #include is known
as a preprocessing translation unit. After preprocessing, a
preprocessing translation unit is called a translation unit.
--
"In My Egotistical Opinion, most people's C programs should be indented six
feet downward and covered with dirt." -- Blair P. Houghton
Mar 7 '07 #33

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Der Andere | last post by:
Do non-member static functions exist? If yes, what is the sense of making a non-member function a static function? Can these functions only access static variables? Cheers, Matthias Treder
7
by: Nolan Martin | last post by:
is a static functions address constant? ie.. static void func(); write_to_file(&func); Restart program... static void func(); void (*funcPtr) ();
4
by: Ufit | last post by:
What is the difference between those two. Is there gonna be some difference in app execution for static functions? What difference does it make? UF
8
by: prasi | last post by:
hi, all I wanted to know the significance of static functions. can anybody explain me. thanks in advance Prasanna K P
9
by: Pohihihi | last post by:
What could be the possible reasons (technical/non technical) of not using lots of static functions or variables in a program keeping in mind that Framework by itself has tons of static functions and...
5
by: WebMatrix | last post by:
Hello, It might seem like a stupid question to some. But I need to put this issue to rest once and for all, since it keeps coming up in code reviews every now and then. There’s a static...
7
by: sam_cit | last post by:
Hi Everyone, I had a look at a big project for real-world purpose and i found that all the functions in c have been prototyped as static and i understand that this would mean that these...
3
by: llothar | last post by:
I'm using SmallEiffel - which is more or less a huge preprocessor - for C. It has the option to compile the whole Eiffel program into one huge C file but doesn't add a static declaration to the...
1
by: wizwx | last post by:
I just noticed an interesting implementation of Singleton from Bruce Eckel's "Thinking in C++" vol. 2, pp 620: class Singleton { static Singleton s; public: static Singleton& instance() {...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.