Getting allocators and types under control.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user