1 /* -*- Mode: C; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // -------------------------------------------------------------------------*/
10 #include "sjme/comparator.h"
11 #include "sjme/debug.h"
13 sjme_jint
SJME_COMPARATOR(sjme_lpcstr
, 0)(sjme_cpointer a
, sjme_cpointer b
,
16 if (a
== NULL
|| b
== NULL
)
17 return SJME_ERROR_NULL_ARGUMENTS
;
19 sjme_todo("Implement this?");
20 return SJME_ERROR_NOT_IMPLEMENTED
;
23 sjme_jint
SJME_COMPARATOR_INSENSITIVE(sjme_lpcstr
, 0)(
24 sjme_cpointer a
, sjme_cpointer b
, int elementSize
)
26 if (a
== NULL
|| b
== NULL
)
27 return SJME_ERROR_NULL_ARGUMENTS
;
29 sjme_todo("Implement this?");
30 return SJME_ERROR_NOT_IMPLEMENTED
;