#include <stdlib.h>
#include <limits.h>
#include "errors.h"
Go to the source code of this file.
|
| struct Inventory * | Inventory_construct (unsigned int length, int *error) |
| |
| struct Inventory * | Inventory_destruct (struct Inventory *this) |
| |
| unsigned int | Inventory_getNext (const struct Inventory *this) |
| |
| void | Inventory_append (struct Inventory *this, unsigned int content, int *error) |
| |
| void | Inventory_appendUnchecked (struct Inventory *this, unsigned int content, int *error) |
| |
| void | Inventory_update (struct Inventory *this, unsigned int path, unsigned int content, int *error) |
| |
| unsigned int | Inventory_read (const struct Inventory *this, unsigned int path, int *error) |
| |
◆ Inventory_append()
| void Inventory_append |
( |
struct Inventory * |
this, |
|
|
unsigned int |
content, |
|
|
int * |
error |
|
) |
| |
◆ Inventory_appendUnchecked()
| void Inventory_appendUnchecked |
( |
struct Inventory * |
this, |
|
|
unsigned int |
content, |
|
|
int * |
error |
|
) |
| |
◆ Inventory_construct()
| struct Inventory * Inventory_construct |
( |
unsigned int |
length, |
|
|
int * |
error |
|
) |
| |
◆ Inventory_destruct()
◆ Inventory_getNext()
| unsigned int Inventory_getNext |
( |
const struct Inventory * |
this | ) |
|
◆ Inventory_read()
| unsigned int Inventory_read |
( |
const struct Inventory * |
this, |
|
|
unsigned int |
path, |
|
|
int * |
error |
|
) |
| |
◆ Inventory_update()
| void Inventory_update |
( |
struct Inventory * |
this, |
|
|
unsigned int |
path, |
|
|
unsigned int |
content, |
|
|
int * |
error |
|
) |
| |