WindowsXP-SP1/shell/ext/mlang/detcbase.cpp
2020-09-30 16:53:49 +02:00

26 lines
758 B
C++

// ============================================================================
// Internet Code Set Detection: Base Class
// ============================================================================
#include "private.h"
#include "detcbase.h"
/******************************************************************************
********************** D E T E C T S T R I N G A **********************
******************************************************************************/
int CINetCodeDetector::DetectStringA(LPCSTR lpSrcStr, int cchSrc)
{
BOOL fDetected = FALSE;
while (cchSrc-- > 0) {
if (fDetected = DetectChar(*lpSrcStr++))
break;
}
if (!fDetected)
(void)CleanUp();
return GetDetectedCodeSet();
}