22#define DIO_ERROR_NULL_PTR -1
23#define DIO_ERROR_COPY_MISMATCH -2
24#define DIO_ERROR_COULD_NOT_OPEN_FILE -3
25#define DIO_ERROR_INVALID_STREAM -4
40#define DIO_STREAM_BUFFER 1
45#define DIO_STREAM_FILE 2
47#ifdef DISABLE_FILESYSTEM
53#define dio_assert_stream( stream )
62#define dio_assert_stream( stream ) \
65 ((DIO_STREAM_BUFFER == stream->type && NULL != stream->buffer.bytes ) || \
66 (DIO_STREAM_FILE == stream->type && NULL != stream->buffer.file )) )
70#ifndef DISABLE_FILESYSTEM
89#define LIST_ERROR_MAX -100
99#define dio_list_append( node, list, list_sz, list_max, list_type ) \
100 if( (list_sz) + 1 >= (list_max) ) { \
101 g_dio_error = LIST_ERROR_MAX; \
103 memory_copy_ptr( (MEMORY_PTR)&(list[list_sz]), (MEMORY_PTR)node, \
104 sizeof( list_type ) ); \
116#define dio_list_remove( idx, list, list_sz, list_type ) assert( (idx) < (list_sz) ); while( (idx) + 1 < (list_sz) ) { memory_copy_ptr( (MEMORY_PTR)&(list[idx]), (MEMORY_PTR)&(list[idx + 1]), sizeof( list_type ) ); (idx)++; } (list_sz)--;
128 const char* path,
const char* mode,
struct DIO_STREAM* stream );
129int32_t dio_open_stream_buffer( uint8_t*, uint32_t,
struct DIO_STREAM* );
131int32_t dio_seek_stream(
struct DIO_STREAM*, int32_t, uint8_t );
134int32_t dio_position_stream(
struct DIO_STREAM* );
141uint32_t dio_reverse_endian_32( uint32_t );
142uint16_t dio_reverse_endian_16( uint16_t );
143int32_t dio_char_idx(
const char*, int32_t,
char );
144int32_t dio_char_idx_r(
const char*, int32_t,
char );
145int16_t dio_mktemp_path(
char*, uint16_t,
const char* );
146int32_t dio_basename(
const char*, uint32_t );
147int32_t dio_copy_file(
const char*,
const char* );
149int32_t dio_move_file(
const char*,
const char* );
150int16_t dio_strnchr(
const char*, uint16_t,
char );
151int16_t dio_itoa(
char*, uint16_t, int16_t, uint8_t );
152int16_t dio_atoi(
const char*, uint8_t );
153int16_t dio_snprintf(
char*, uint16_t,
const char*, ... );
int32_t dio_open_stream_file(const char *path, const char *mode, struct DIO_STREAM *stream)
Open a stream as a file on disk.
int8_t g_dio_error
Holds return errors for macro-based utilities.
void * MEMORY_PTR
A C-style memory pointer that can be safely dereferenced.
Definition: fakem.h:42
An emulated memory handle for modern systems. Overridden on most platforms.
Definition: memory.h:20