eratosthenesia / lispc

"Lispsy" Lisp(ish) to C Converter (designed for CLISP)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mixed-case symbols

lassik opened this issue · comments

How does one call C functions with mixed-case names? The code generator turns both @ftglCreatePixmapFont and |@ftglCreatePixmapFont| into ftglcreatepixmapfont.

I'd expect kebab-case: ftgl-create-pixmap-font.

That doesn't preserve case either - @ftgl-Create-Pixmap-Font turns into ftgl_create_pixmap_font.

Cool, thanks!