Database
aa010.txt
Associated article: Algorithm Alley
Tags: Database Parallel
Published source code accompanying the article by David Wincelberg in which he presents a simple alphanumeric-ordering function, then describes another function suitable for comparing long filenames.
Algorithm Alley
by David Wincelberg
Listing One
// SNSimpleLib.h -- Alphanumeric Ordering
#ifndef SNSIMPLELIB_H
#define SNSIMPLELIB_H
#ifdef __cplusplus
extern "C" {
#endif
int SimpleANCompare (const char *pszName1, const char *pszName2);
void SetSNSLocaleSort (int bLocaleSort);
#ifdef __cplusplus
}
#endif
#...


