13 lines
181 B
C
13 lines
181 B
C
|
|
#include <debug.h>
|
|
|
|
#include "struct.h"
|
|
#include "compare.h"
|
|
|
|
int compare_string(
|
|
const struct string* a,
|
|
const struct string* b)
|
|
{
|
|
return strcmp(a->data, b->data);
|
|
}
|
|
|