mirror of
				https://github.com/stedolan/jq.git
				synced 2024-05-11 05:55:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			640 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			640 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef JV_ALLOC_H
 | 
						|
#define JV_ALLOC_H
 | 
						|
 | 
						|
#include <stddef.h>
 | 
						|
#include "jv.h"
 | 
						|
 | 
						|
#ifndef NDEBUG
 | 
						|
extern volatile char jv_mem_uninitialised;
 | 
						|
#endif
 | 
						|
 | 
						|
static void jv_mem_invalidate(void* mem, size_t n) {
 | 
						|
#ifndef NDEBUG
 | 
						|
  char* m = mem;
 | 
						|
  while (n--) *m++ ^= jv_mem_uninitialised ^ jv_mem_uninitialised;
 | 
						|
#endif
 | 
						|
}
 | 
						|
 | 
						|
void* jv_mem_alloc(size_t);
 | 
						|
void* jv_mem_alloc_unguarded(size_t);
 | 
						|
void* jv_mem_calloc(size_t, size_t);
 | 
						|
void* jv_mem_calloc_unguarded(size_t, size_t);
 | 
						|
char* jv_mem_strdup(const char *);
 | 
						|
char* jv_mem_strdup_unguarded(const char *);
 | 
						|
void jv_mem_free(void*);
 | 
						|
__attribute__((warn_unused_result)) void* jv_mem_realloc(void*, size_t);
 | 
						|
 | 
						|
#endif
 |