#include "xsintarray.h"
Go to the source code of this file.
Functions | |
int | compareInt (int const *a, int const *b) |
The function to use for comparing two items. More... | |
void | copyInt (int *to, int const *from) |
The function to use for copying the data of from to to. More... | |
void | swapInt (int *a, int *b) |
The function to use for swapping the data of two array items. More... | |
void | XsIntArray_construct (XsIntArray *thisPtr, XsSize count, int const *src) |
Variables | |
const XsArrayDescriptor | g_xsIntArrayDescriptor |
Descriptor for XsIntArray. More... | |
int compareInt | ( | int const * | a, |
int const * | b | ||
) |
The function to use for comparing two items.
a | Left hand side of comparison. |
b | Right hand side of comparison. |
Definition at line 90 of file xsintarray.c.
void copyInt | ( | int * | to, |
int const * | from | ||
) |
The function to use for copying the data of from to to.
to | Pointer to item to copy to. |
from | Pointer to item to copy from. |
Definition at line 83 of file xsintarray.c.
void swapInt | ( | int * | a, |
int * | b | ||
) |
The function to use for swapping the data of two array items.
a | Pointer to first item to swap. |
b | Pointer to second item to swap. |
Definition at line 74 of file xsintarray.c.
void XsIntArray_construct | ( | XsIntArray * | thisPtr, |
XsSize | count, | ||
int const * | src | ||
) |
Definition at line 116 of file xsintarray.c.
const XsArrayDescriptor g_xsIntArrayDescriptor |
Descriptor for XsIntArray.
Definition at line 101 of file xsintarray.c.