Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb_yyjson::yyjson_alc Struct Reference

Public Attributes

void *(* malloc )(void *ctx, size_t size)
 
void *(* realloc )(void *ctx, void *ptr, size_t old_size, size_t size)
 
void(* free )(void *ctx, void *ptr)
 
void * ctx
 

Detailed Description

A memory allocator.

Typically you don't need to use it, unless you want to customize your own memory allocator.

Member Data Documentation

◆ malloc

void *(* duckdb_yyjson::yyjson_alc::malloc) (void *ctx, size_t size)

Same as libc's malloc(size), should not be NULL.

◆ realloc

void *(* duckdb_yyjson::yyjson_alc::realloc) (void *ctx, void *ptr, size_t old_size, size_t size)

Same as libc's realloc(ptr, size), should not be NULL.

◆ free

void(* duckdb_yyjson::yyjson_alc::free) (void *ctx, void *ptr)

Same as libc's free(ptr), should not be NULL.

◆ ctx

void* duckdb_yyjson::yyjson_alc::ctx

A context for malloc/realloc/free, can be NULL.


The documentation for this struct was generated from the following file: