05-18-07 12:20 PM
> > protoize works for C (except that it changes the parameter types).[vbcol=seagreen]
hi thomas,
i was looking about protoize, but i'm a bit confused:
protoize works in the same .c file, and as u told, it changes the
parameters types, for example a function i wrote as
test() it changes to test(void)
that is ok
it introduces at the begining of .c file, ONLY the prototypes of
functions forward refered, not ALL of the functions defined in the
file, ok????
the huge .X file contains ALL the definition found for that .c file
including ALL the headers found?
cproto, gives me a cute file, only with the functions defined in
the .c file. ok?????
so i can't obtain the similar results of cproto with protoize?????
tks in advance
[ Post a follow-up to this message ]
|