17 lines
223 B
C
17 lines
223 B
C
|
|
#include <wchar.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include "struct.h"
|
|
#include "compare.h"
|
|
|
|
int compare_strings(
|
|
const struct string* a,
|
|
const struct string* b)
|
|
{
|
|
return wcscmp(a->data, b->data);
|
|
}
|
|
|