Use linker script to convert identifier from CamelCase to snake_case?

57 Views Asked by At

i am working on a C project using a snake_case syntax for naming my functions. However, a lib i need to uses CamelCase for all of its function names.

To avoid doing a long header full of static inline definitions, i wonder if i could be possible to take advantage of linked script, to dynamically convert the objects identifiers from CamelCase to snake_case.

Is it possible?

0

There are 0 best solutions below