MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / to_lower

Function to_lower

src/HLSelection.c:57–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55char *_hl_se_orig_word = 0;
56
57char to_lower(char in){
58 if (in <= 'Z' && in >= 'A')
59 return in - ('Z' - 'z');
60 if (in <= '�' && in >= '�')
61 return in - ('�' - '�');
62 return in;
63}
64
65
66BOOL case_compare(const char* a, const char* b , BOOL ignore_case){

Callers 1

icase_compareFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected