Pulling my hair out here, but I need to convert an int to a string in C without using snprintf or itoa. Any suggestions?
I tried using:
/*
** LTOSTR.C -- routine and example program to convert a long int to
** the specified numeric base, from 2 to 36.
**
** Written by Thad Smith III, Boulder, CO. USA 9/06/91
** and contributed to the Public Domain.
**
** src: http://www8.cs.umu.se/~isak/snippets/ltostr.c
*/
#include <stdlib.h>
char * /* addr of terminating null */
ltostr (
char *str, /* output string */
long val, /* value to be converted */
unsigned base) /* conversion base */
{
ldiv_t r; /* result of val / base */
if (base > 36) /* no conversion if wrong base */
{
str = '\0';
return str;
}
if (val < 0) *str++ = '-';
r = ldiv (labs(val), base);
/* output digits of val/base first */
if (r.quot > 0) str = ltostr (str, r.quot, base);
/* output last digit */
*str++ = "0123456789abcdefghijklmnopqrstuvwxyz"[(int)r.rem];
*str = '\0';
return str;
}
...but it gives me a EXE_BAD_ACCESS on *str++ = "0123456789abcdefghijklmnopqrstuvwxyz"[(int)r.rem];
.