
#ifndef _WINDOWS
#include <strings.h>
#endif
#include "jlstringlist.h"


#define CLASS_NAME JLStringList
#define CLASS_TYPE JLString
#define CLASS_TYPE_PTR JLString*

#define SIMPLE_COPY


#include "dynarray.C"


int CompareJLStrings(const void *s1, const void *s2) {

	return strcmp(
			(*((JLString **)(s1)))->GetString(),
			(*((JLString **)(s2)))->GetString()
		);
}


#undef SIMPLE_COPY

#undef CLASS_NAME
#undef CLASS_TYPE
#undef CLASS_TYPE_PTR

