Getting allocators and types under control.

This commit is contained in:
2025-02-08 08:03:27 +02:00
parent d1d10aafa1
commit 4502339527
2 changed files with 74 additions and 4 deletions
+4 -4
View File
@@ -19,21 +19,21 @@ To use this library, do this in *one* C:
#ifndef JH_INCLUDED
#define JH_INCLUDED
#include <stdio.h>
typedef uint8_t byte;
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef char i8;
typedef int16_t i32;
typedef int16_t i16;
typedef int32_t i32;
typedef float f32;
typedef double f64;
typedef char byte;
typedef char16_t c16;
typedef uintptr_t uptr;
typedef ptrdiff_t size;
typedef size_t usize;
void jh_sort_int_array(int* array, size_t arrlen, const char* order);