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

Function IsUTF7

src/Edit.c:979–990  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

977
978
979BOOL IsUTF7 ( const char *pTest, int nLength )
980{
981 int i;
982 const char *pt = pTest;
983 for ( i = 0; i < nLength; i++ ) {
984 if ( *pt & 0x80 || !*pt ) {
985 return FALSE;
986 }
987 pt++;
988 }
989 return TRUE;
990}
991
992
993#define IsUTF8Signature(p) \

Callers 1

EditLoadFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected