pascalidentto_string

pascal_ident_to_string exports a procedural macro to convert an identifier to a string literal in pascal case

Motivation

I like my identifiers snake-y. The Windows APIs don't. So, this macro helps me with converting the function names to pascal case string literals before passing them to GetProcAddress

Example

```rust use pascalidenttostring::pascalstring;

let myrustyident = pascalstring!(myrustyident); asserteq!(myrustyident, "MyRustyIdent"); ```

License: MIT