How could one emulate namespace in C?
Posted
by skydoor
on Stack Overflow
See other posts from Stack Overflow
or by skydoor
Published on 2010-03-20T00:31:22Z
Indexed on
2010/03/20
0:41 UTC
Read the original article
Hit count: 199
In C++ one might use namespace to keep independent groups working in the same code base from inadvertently creating functions with the same name and thus creating a conflict. My question is, before the idea of namespace comes out, how might one emulate namespace in C.
© Stack Overflow or respective owner