15 lines
		
	
	
		
			305 B
		
	
	
	
		
			C
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			305 B
		
	
	
	
		
			C
		
	
	
#ifndef HELPER_H
 | 
						|
#define HELPER_H
 | 
						|
#include <stdlib.h>
 | 
						|
#include <string.h>
 | 
						|
/**
 | 
						|
* C++ version 0.4 char* style "itoa":
 | 
						|
* Written by Lukás Chmela
 | 
						|
* Released under GPLv3.
 | 
						|
*/
 | 
						|
char* itoa(int value, char* result, int base);
 | 
						|
#if __APPLE__ | _WIN32 | _WIN64
 | 
						|
char * strndup (const char *s, size_t n);
 | 
						|
#endif
 | 
						|
#endif
 |