Is it considered as bad style to have a mixture of exact width types (introduced by C99) and standard C types in one prototype definition? E.g.

  int some_func (uint32_t flags,
                   int on_off_switch);
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

One generally uses an exact width type if the exact width is important to your code, for example if you absolutely need to know how many bits the representation of the integer will take up. It is certainly possible for some of the parameters to a function to have such constraints and others not to -- it all depends on precisely what you are doing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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