7#include "offload_acc_omp.h"
DECLARE_TARGET_END DECLARE_TARGET void list_int_add(list_int_node *list, int data)
Add new node to the end of the chain.
DECLARE_TARGET void list_int_create(list_int_node **list)
Create an empty list.
DECLARE_TARGET_END DECLARE_TARGET int list_int_get(list_int_node *list, int index)
Retrieve the data stored in a list node.
DECLARE_TARGET_END DECLARE_TARGET void list_int_free(list_int_node **list)
Deallocate this list and all lists it is linked to.
DECLARE_TARGET_END DECLARE_TARGET int list_int_size(list_int_node *list)
Get list size.
struct list_int_node list_int_node
Linked list node that stores int data.
Linked list node that stores int data.
struct list_int_node * next