 b6cbf7203b
			
		
	
	
		b6cbf7203b
		
	
	
	
	
		
			
			This patch imports the unmodified current version of NetBSD libc. The NetBSD includes are in /nbsd_include, while the libc code itself is split between lib/nbsd_libc and common/lib/libc.
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*	$NetBSD: l64a.c,v 1.13 2003/07/26 19:24:54 salo Exp $	*/
 | |
| 
 | |
| /*
 | |
|  * Written by J.T. Conklin <jtc@NetBSD.org>.
 | |
|  * Public domain.
 | |
|  */
 | |
| 
 | |
| #include <sys/cdefs.h>
 | |
| #if defined(LIBC_SCCS) && !defined(lint)
 | |
| __RCSID("$NetBSD: l64a.c,v 1.13 2003/07/26 19:24:54 salo Exp $");
 | |
| #endif
 | |
| 
 | |
| #include "namespace.h"
 | |
| 
 | |
| #include <assert.h>
 | |
| #include <errno.h>
 | |
| #include <stdlib.h>
 | |
| 
 | |
| #ifdef __weak_alias
 | |
| __weak_alias(l64a,_l64a)
 | |
| __weak_alias(l64a_r,_l64a_r)
 | |
| #endif
 | |
| 
 | |
| char *
 | |
| l64a (value)
 | |
| 	long value;
 | |
| {
 | |
| 	static char buf[8];
 | |
| 
 | |
| 	(void)l64a_r(value, buf, sizeof (buf));
 | |
| 	return buf;
 | |
| }
 | |
| 
 | |
| int
 | |
| l64a_r (value, buffer, buflen)
 | |
| 	long value;
 | |
| 	char *buffer;
 | |
| 	int buflen;
 | |
| {
 | |
| 	char *s = buffer;
 | |
| 	int digit;
 | |
| 	unsigned long v = value;
 | |
| 
 | |
| 	_DIAGASSERT(buffer != NULL);
 | |
| 
 | |
| 	if (value == 0UL) 
 | |
| 		goto out;
 | |
| 
 | |
| 	for (; v != 0 && buflen > 1; s++, buflen--) {
 | |
| 		digit = (int)(v & 0x3f);
 | |
| 
 | |
| 		if (digit < 2) 
 | |
| 			*s = digit + '.';
 | |
| 		else if (digit < 12)
 | |
| 			*s = digit + '0' - 2;
 | |
| 		else if (digit < 38)
 | |
| 			*s = digit + 'A' - 12;
 | |
| 		else
 | |
| 			*s = digit + 'a' - 38;
 | |
| 		v >>= 6;
 | |
| 	}
 | |
| 
 | |
| out:
 | |
| 	*s = '\0';
 | |
| 
 | |
| 	return (v == 0UL ? 0 : -1);
 | |
| }
 |