vote up 2 vote down star

I was wondering about little differences between declaration of function prototypes in headers and in .c files. I have a header with some prototype functions and a some .c files with real implementation of these functions. I made some changes in the header, only added "__restrict" qualifier (recognized by gcc). My question is do I have to put the "__restrict" qualifier in .c files to (currently the code compile so I guess the answer is no, but some precision would be appreciated).

Does this work for every C qualifier? Can I add some "const" or "volatile" in header without having to do the same in .c files?

currently in header :

int myfunc_gettype (const mytype *__restrict, int *__restrict);

and in implementation file :

int myfunc_gettype(const mytype *attr, int *type)
flag

3 Answers

vote up 6 vote down check

You must. The mismatch invokes undefined behavior. Is there some reason why you want to have separate declarations in the header and at definition?

Note well, that the keyword is restrict as opposed to __restrict which is a vendor extension (hint: look at the _'s before the keyword name). You should stick to the standard version for portability.

link|flag
in fact the restrict keyword is C99 and the __restrict is just catch by gcc with i guess the same result. – claferri Apr 5 at 16:49
I'm not sure to understand, if I have the restrict qualifier in the header and not in the implementation, will the pointer be "restrict" anyway or not? – claferri Apr 5 at 16:52
You are invoking UB. It may actually cause the pointer to be restrict qualified. The standard C++ keyword is 'restrict', why use __restrict? – dirkgently Apr 5 at 17:36
The restrict keyword is a type qualifier for pointers and is a formal part of the C99 standard.In code that cannot be compiled with C99, use either restrict or __restrict to enable the keyword as a GCC extension. – claferri Apr 5 at 17:44
What is "UB" ? – claferri Apr 5 at 17:45
show 8 more comments
vote up -1 vote down

With gcc 4.0.1, it depends on whether the const is pointless:

// Who cares, compiles fine, but irks the maintenance programmer.

// f.h
int f(const int i);

// f.c
int f(int i) { return i += 42; }


// No no no no Your Types Conflict gcc will not stand for it

// f.h
int f(const int *pi);

// f.c
int f(int *pi) { return (*pi)+= 42; }
link|flag
It even irks the SO community enough to provoke a downvote. – Thomas L Holaday Apr 5 at 20:52
The question wasn't "is this legal" or even "is this acceptable practice"; it was "will it work." – Thomas L Holaday Apr 5 at 20:54
vote up -2 vote down

NOTE: You haven't actually added the 'restrict' qualifier. You just have different (optional) variable names in the prototype.

As to your question, most good C compilers will catch this bug and throw a warning/error if the non-matching prototype is #included with the implementation. If you have mismatching prototypes, you may see problems ranging from subtle to instant crash.

link|flag
you mean __restrict is an optional variable name in the prototype? I'm pretty sure you're wrong with gcc. – claferri Apr 5 at 16:53
In fact, I was right : "The restrict keyword is a type qualifier for pointers and is a formal part of the C99 standard.In code that cannot be compiled with C99, use either restrict or __restrict to enable the keyword as a GCC extension." – claferri Apr 5 at 16:56
Since it compiles, it must be just a qualifier; you can't have two arguments with the same name. I wondered at first, but I think this argument is decisive - assuming the code does compile as claimed. – Jonathan Leffler Apr 5 at 17:01
@Jonathan : yes, before using the __restrict qualifier, I first used restrict without -std=c99 and gcc complain about having two arguments with the same name, then i remember i couldn't compile with -std=c99 for the moment and decided to use gcc extension __restrict instead. – claferri Apr 5 at 17:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.