MCPcopy Create free account
hub / github.com/dborth/vbagx / utilIsZipFile

Function utilIsZipFile

source/vbasupport.cpp:1154–1166  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1152}
1153
1154bool utilIsZipFile(const char* file)
1155{
1156 if(strlen(file) > 4)
1157 {
1158 char * p = strrchr(file,'.');
1159 if(p != NULL)
1160 {
1161 if(strcasecmp(p, ".zip") == 0)
1162 return true;
1163 }
1164 }
1165 return false;
1166}
1167
1168bool LoadVBAROM()
1169{

Callers 1

LoadVBAROMFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected