I have to define a 24-bit data type.I am using char[3] to represent the type. Can I typedef char[3] to type24? I tried it in a code sample. I put typedef char[3] type42; in my header file. The compiler did not complain about it. But when I defined a function void foo(type24 val) {} in my C file, it did complain. I would like to be able to define functions like type24_to_int32(type24 val) instead of type24_to_int32(char value[3]).
|
|
||||
|
|
|
The typedef would be
However, this is probably a very bad idea, because the resulting type is an array type, but users of it won't see that it's an array type. If used as a function argument, it will be passed by reference, not by value, and the A better solution would be
You probably also want to be using |
|||||
|
|
Arrays can't be passed as function parameters by value in C. You can put the array in a struct:
and then pass that by value, but of course then it's less convenient to use: Your function If you're happy passing by pointer, you could stick with the array and do:
This will pass a pointer-to-array, not pointer-to-first-element, so you use it as:
I'm not sure that's really a gain, since if you accidentally write |
||||
|
|