Reshuffled
This commit is contained in:
106
src/util/list.h
Normal file
106
src/util/list.h
Normal file
@@ -0,0 +1,106 @@
|
||||
// Copyright (c) 2021 Dominic Msters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#pragma once
|
||||
#include <stdio.h>
|
||||
#include <stdbool.h>
|
||||
#include <malloc.h>
|
||||
#include <stdint.h>
|
||||
|
||||
/**
|
||||
* Entry within a given linked list.
|
||||
* @param data* The pointer to the data that is within the entry.
|
||||
* @param prev* Pointer to the previous entry in the list.
|
||||
* @param next* Pointer to the next entry in the list.
|
||||
*/
|
||||
typedef struct listentry_t {
|
||||
void *data;
|
||||
struct listentry_t *prev;
|
||||
struct listentry_t *next;
|
||||
} listentry_t;
|
||||
|
||||
/**
|
||||
* Linked List of elements, Doubly Linked.
|
||||
* @param size The count of elements currently within the list
|
||||
* @param start* First element within the list.
|
||||
* @param end* Last element within the list.
|
||||
*/
|
||||
typedef struct {
|
||||
uint32_t size;
|
||||
listentry_t *start;
|
||||
listentry_t *end;
|
||||
} list_t;
|
||||
|
||||
//Method definitions
|
||||
|
||||
/**
|
||||
* Creates a new linked list
|
||||
* @return Pointer to a new linked list.
|
||||
*/
|
||||
list_t * listCreate();
|
||||
|
||||
/**
|
||||
* Adds data to a linked list
|
||||
*
|
||||
* @param list* Pointer to a previously created linked list
|
||||
* @param data* Pointer to your data
|
||||
* @return A pointer to the new entry in the linked list that was created
|
||||
*/
|
||||
listentry_t * listAdd(list_t *list, void *data);
|
||||
|
||||
/**
|
||||
* Internal function
|
||||
*/
|
||||
void listAddEntry(list_t *list, listentry_t *entry);
|
||||
|
||||
/**
|
||||
* Remove data from a linked list.
|
||||
*
|
||||
* @param list Pointer to a previously created linked list.
|
||||
* @param data* Pointer to your data.
|
||||
*/
|
||||
void listRemove(list_t *list, void *data);
|
||||
|
||||
/**
|
||||
* Remove a list entry from the linked list.
|
||||
*
|
||||
* @param list* Pointer to a previously created linked list.
|
||||
* @param entry* Pointer to the entry within the linked list.
|
||||
* @param freeData If true the data of the listentry_t will be free()'d
|
||||
*/
|
||||
void listRemoveEntry(list_t *list, listentry_t *entry, bool freeData);
|
||||
|
||||
/**
|
||||
* Returns the entry at a given index. This method is costly.
|
||||
* @param list* Pointer to a previously created linked list
|
||||
* @param index Index of element within the linked list to remove
|
||||
* @return The entry at the index or NULL if outside the bounds.
|
||||
*/
|
||||
listentry_t * listGetByIndex(list_t *list, uint32_t index);
|
||||
|
||||
/**
|
||||
* Returns the index of data within the linked list. This method is costly.
|
||||
*
|
||||
* @param list* Pointer to a previously created linked list
|
||||
* @param data* Pointer to your data.
|
||||
* @return The index within the list the entry is in, or -1 if not found.
|
||||
*/
|
||||
uint32_t listGetIndex(list_t *list, void* data);
|
||||
|
||||
/**
|
||||
* Returns the index of an entry within the linked list. This method is costly.
|
||||
*
|
||||
* @param list* Pointer to a previously created linked list
|
||||
* @param entry* Pointer to the entry within the linked list.
|
||||
* @return The index within the list the entry is in, or -1 if not found.
|
||||
*/
|
||||
uint32_t listGetEntryIndex(list_t *list, listentry_t *entry);
|
||||
|
||||
/**
|
||||
* Dispose a previously created link list.
|
||||
* @param list* Pointer to a previously created linked list
|
||||
* @param freeData If true the data within each listentry_t will be free()'d
|
||||
*/
|
||||
void listDispose(list_t *list, bool freeData);
|
Reference in New Issue
Block a user