Files
namespaces-in-c/module.c
olemorud 0c33a58da0 Test pseudo-namespaces in C
In C you can create pseudo-namespaces by abusing structs of function
pointers, making function calls look like `module.func(x)` instead of
`func(x)`.

A lot of people online spout that this creates overhead, but this should
show that clang>=15.0.7 will still inline such function calls. GCC 11.3.1
is unable  to inline the function, but will still call the function
directly.
2023-06-06 11:32:12 +02:00

13 lines
108 B
C

#include "module.h"
inline int succ(int x)
{
return x+1;
}
struct exports module = {
.succ = succ,
};