MCPcopy Create free account
hub / github.com/apache/singa / IsAlNum

Function IsAlNum

test/gtest/gtest.h:2769–2771  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2767 return isalpha(static_cast<unsigned char>(ch)) != 0;
2768}
2769inline bool IsAlNum(char ch) {
2770 return isalnum(static_cast<unsigned char>(ch)) != 0;
2771}
2772inline bool IsDigit(char ch) {
2773 return isdigit(static_cast<unsigned char>(ch)) != 0;
2774}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected