What does "PRIVATE" in "PRIVATE int func_name()" in c? -
i have following c function,
private int func_name() { return 0; }
what "private" mean here?
in "normal" c private
has no meaning.
it #define
static
(or perhaps nothing). i'd suggest trying grab output of pre-processor see looks like. in gcc it's -e
stop after pre-processor stage.
Comments
Post a Comment