mirror of
				https://git.proxmox.com/git/libgit2
				synced 2025-11-04 03:05:04 +00:00 
			
		
		
		
	Clay is the name of a programming language on the makings, and we want to avoid confusions. Sorry for the huge diff!
		
			
				
	
	
		
			23 lines
		
	
	
		
			617 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			617 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "clar_libgit2.h"
 | 
						|
#include "util.h"
 | 
						|
 | 
						|
void test_core_hex__fromhex(void)
 | 
						|
{
 | 
						|
	/* Passing cases */
 | 
						|
	cl_assert(git__fromhex('0') == 0x0);
 | 
						|
	cl_assert(git__fromhex('1') == 0x1);
 | 
						|
	cl_assert(git__fromhex('3') == 0x3);
 | 
						|
	cl_assert(git__fromhex('9') == 0x9);
 | 
						|
	cl_assert(git__fromhex('A') == 0xa);
 | 
						|
	cl_assert(git__fromhex('C') == 0xc);
 | 
						|
	cl_assert(git__fromhex('F') == 0xf);
 | 
						|
	cl_assert(git__fromhex('a') == 0xa);
 | 
						|
	cl_assert(git__fromhex('c') == 0xc);
 | 
						|
	cl_assert(git__fromhex('f') == 0xf);
 | 
						|
 | 
						|
	/* Failing cases */
 | 
						|
	cl_assert(git__fromhex('g') == -1);
 | 
						|
	cl_assert(git__fromhex('z') == -1);
 | 
						|
	cl_assert(git__fromhex('X') == -1);
 | 
						|
}
 |