MCPcopy Create free account
hub / github.com/NanoMichael/MicroTeX / isValidCharacterInCommand

Method isValidCharacterInCommand

src/core/parser.h:477–479  ·  view source on GitHub ↗

* Test the validity of a character in a command. It must contains only * alpha characters and eventually a @ if makeAtletter activated */

Source from the content-addressed store, hash-verified

475 * alpha characters and eventually a @ if makeAtletter activated
476 */
477 inline bool isValidCharacterInCommand(wchar_t ch) const {
478 return isalpha(ch) || (_atIsLetter != 0 && ch == '@');
479 }
480};
481
482} // namespace tex

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected