--- In [email protected], Thomas Hruska <thru...@...> wrote: > > You can reuse the array with typecasting but be sure to very carefully > document it. > > A union would work as well (and perhaps better as your code might be > more readable):
I would argue that a union is usually preferable - at least you allow the compiler (or lint) to do some sort of type checking. With typecasting, you are on your own :-)
