Try fixing GitHub project language

This commit is contained in:
gingerBill 2016-05-08 00:04:01 +01:00
parent b61f116e63
commit ee11fbd74c
2 changed files with 14 additions and 8 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
*.c linguist-language=C
*.h linguist-language=C

20
gb.h
View File

@ -211,7 +211,7 @@ extern "C" {
* *
*/ */
/* To mark types chaning their size, e.g. intptr */ /* NOTE(bill); To mark types changing their size, e.g. intptr */
#ifndef _W64 #ifndef _W64
#if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && _MSC_VER >= 1300 #if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && _MSC_VER >= 1300
#define _W64 __w64 #define _W64 __w64
@ -222,12 +222,12 @@ extern "C" {
#if defined(_MSC_VER) #if defined(_MSC_VER)
#if _MSC_VER < 1300 #if _MSC_VER < 1300
typedef unsigned char u8; typedef unsigned char u8;
typedef signed char i8; typedef signed char i8;
typedef unsigned short u16; typedef unsigned short u16;
typedef signed short i16; typedef signed short i16;
typedef unsigned int u32; typedef unsigned int u32;
typedef signed int i32; typedef signed int i32;
#else #else
typedef unsigned __int8 u8; typedef unsigned __int8 u8;
typedef signed __int8 i8; typedef signed __int8 i8;
@ -307,6 +307,7 @@ typedef i32 b32; /* NOTE(bill): Prefer this!!! */
#endif #endif
#endif #endif
/* NOTE(bill): These do are not prefixed with gb because the types are not. */
#ifndef U8_MIN #ifndef U8_MIN
#define U8_MIN 0u #define U8_MIN 0u
#define U8_MAX 0xffu #define U8_MAX 0xffu
@ -341,7 +342,7 @@ typedef i32 b32; /* NOTE(bill): Prefer this!!! */
#define ISIZE_MIX I64_MIN #define ISIZE_MIX I64_MIN
#define ISIZE_MAX I64_MAX #define ISIZE_MAX I64_MAX
#else #else
#error Unknown architecture size #error Unknown architecture size. This library only supports 32 bit and 64 bit architectures.
#endif #endif
#define F32_MIN 1.17549435e-38f #define F32_MIN 1.17549435e-38f
@ -866,6 +867,9 @@ GB_DEF void *gb_default_resize_align(gbAllocator a, void *ptr, isize old_size, i
/* TODO(bill): Probably use a custom heap allocator system that doesn't depend on malloc/free
* Base it off TCMalloc or something else? Or something entirely custom?
*/
GB_DEF gbAllocator gb_heap_allocator(void); GB_DEF gbAllocator gb_heap_allocator(void);
GB_DEF GB_ALLOCATOR_PROC(gb_heap_allocator_proc); GB_DEF GB_ALLOCATOR_PROC(gb_heap_allocator_proc);