Codebase list libmawk / 70499808-c2b9-4be2-ae11-0ab4b3a1a115/main src / libmawk / missing.c
70499808-c2b9-4be2-ae11-0ab4b3a1a115/main

Tree @70499808-c2b9-4be2-ae11-0ab4b3a1a115/main (Download .tar.gz)

missing.c @70499808-c2b9-4be2-ae11-0ab4b3a1a115/mainraw · history · blame

/* missing.c */

#include "nstd.h"

#ifdef	NO_STRCHR
char *strchr(char *s, int c)
{
	if (c == 0)
		return s + strlen(s);

	while (*s) {
		if (*s == c)
			return s;
		s++;
	}
	return (char *) 0;
}

char *strrchr(char *s, int c)
{
	char *ret = (char *) 0;

	if (c == 0)
		return s + strlen(s);

	while (*s) {
		if (*s == c)
			ret = s;
		s++;
	}
	return ret;
}
#endif /* NO_STRCHR */

#ifdef	 NO_STRERROR
extern int sys_nerr;
extern char *sys_errlist[];
char *strerror(int n)
{
	return n > 0 & n < sys_nerr ? sys_errlist[n] : "";
}
#endif


#ifdef	NO_MEMCPY
PTR memcpy(PTR t, PTR s, size_t n)
{
	char *tt = t;
	char *ss = s;

	while (n > 0) {
		n--;
		*tt++ = *ss++;
	}
	return t;
}

int memcmp(PTR t, PTR s, size_t n)
{
	char *tt = t;
	char *ss = s;

	while (n > 0) {
		if (*tt < *ss)
			return -1;
		if (*tt > *ss)
			return 1;
		tt++;
		ss++;
		n--;
	}
	return 0;
}

PTR memset(PTR t, int c, size_t n)
{
	char *tt = (char *) t;

	while (n > 0) {
		n--;
		*tt++ = c;
	}
	return t;
}
#endif /* NO_MEMCPY */

#ifndef MAWK_NO_FLOAT
#ifdef	NO_STRTOD

/* don't use this unless you really don't have strtod() because
   (1) its probably slower than your real strtod()
   (2) atof() may call the real strtod()
*/

double strtod(const char *s, char **endptr)
{
	register unsigned char *p;
	int flag;
	double atof();

	if (endptr) {
		p = (unsigned char *) s;

		flag = 0;
		while (*p == ' ' || *p == '\t')
			p++;
		if (*p == '-' || *p == '+')
			p++;
		while (scan_code[*p] == SC_DIGIT) {
			flag++;
			p++;
		}
		if (*p == '.') {
			p++;
			while (scan_code[*p] == SC_DIGIT) {
				flag++;
				p++;
			}
		}
		/* done with number part */
		if (flag == 0) {						/* no number part */
			*endptr = s;
			return MAWK_NUM_ZERO;
		}
		else
			*endptr = (char *) p;

		/* now look for exponent */
		if (*p == 'e' || *p == 'E') {
			flag = 0;
			p++;
			if (*p == '-' || *p == '+')
				p++;
			while (scan_code[*p] == SC_DIGIT) {
				flag++;
				p++;
			}
			if (flag)
				*endptr = (char *) p;
		}
	}
	return atof(s);
}
#endif /* no strtod() */

#endif /* MAWK_NO_FLOAT */