libcdsb/include/extra/array.h

13 lines
448 B
C
Raw Normal View History

2022-06-02 12:52:43 +00:00
/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2022 Gregory Lirent */
#include "../array.h"
#ifndef LIBCDSB_EXTRA_ARRAY_H
#define LIBCDSB_EXTRA_ARRAY_H
2022-06-04 18:10:19 +00:00
extern ssize_t libcdsb_array_find(const vtype_array* x, const void* value, vtype value_type);
extern ssize_t libcdsb_array_push( vtype_array* x, const void* value, vtype value_type);
2022-06-02 12:52:43 +00:00
#endif /* LIBCDSB_EXTRA_ARRAY_H */