GRASS GIS 8 Programmer's Manual 8.3.2(2024)-exported
|
#include <stdlib.h>
#include <grass/gis.h>
Go to the source code of this file.
Functions | |
void | G_free_ilist (struct ilist *list) |
Free allocated memory of an integer list. | |
struct ilist * | G_new_ilist (void) |
Return a new integer list. | |
void | G_init_ilist (struct ilist *list) |
Init an integer list and free allocated memory. | |
void | G_ilist_add (struct ilist *list, int val) |
Add item to ilist. | |
void G_free_ilist | ( | struct ilist * | list | ) |
void G_ilist_add | ( | struct ilist * | list, |
int | val ) |
Add item to ilist.
This function adds an integer to the list but does not check for duplicates. In case reallocation fails, G_fatal_error() will be invoked by the allocation function.
list | The ilist pointer |
val | The value to attach |
Definition at line 78 of file ilist.c.
References list.
void G_init_ilist | ( | struct ilist * | list | ) |
struct ilist * G_new_ilist | ( | void | ) |
Return a new integer list.
G_fatal_error() will be invoked by the allocation function.
Definition at line 43 of file ilist.c.
References G_init_ilist(), l, and NULL.