MCPcopy Create free account
hub / github.com/HyperDbg/HyperDbg / IsUnderscore

Function IsUnderscore

hyperdbg/script-engine/code/common.c:605–614  ·  view source on GitHub ↗

* @brief Checks whether input char is underscore (_) or not * * @param c the character to check * @return char */

Source from the content-addressed store, hash-verified

603 * @return char
604 */
605char
606IsUnderscore(char c)
607{
608 if (c >= '_')
609 return 1;
610 else
611 {
612 return 0;
613 }
614}
615
616/**
617 * @brief Checks whether input char belongs to binary digit-set or not

Callers 1

GetTokenFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected