[BusyBox-cvs] busybox/libbb xgetlarg.c,NONE,1.1 Makefile.in,1.17,1.18 bb_xgetlarg.c,1.1,NONE

Erik Andersen andersen at codepoet.org
Fri Mar 7 17:43:36 UTC 2003


Update of /var/cvs/busybox/libbb
In directory winder:/tmp/cvs-serv18045

Modified Files:
	Makefile.in 
Added Files:
	xgetlarg.c 
Removed Files:
	bb_xgetlarg.c 
Log Message:
With nightmares of libbb ending up with 100 .c files starting
with "bb_" it seems best to rename this now and avoid starting
an evil KDE style naming trend.


--- NEW FILE: xgetlarg.c ---
/* vi: set sw=4 ts=4: */
/*
 * Copyright (C) 2003 Erik Andersen <andersee at debian.org>
 */


#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <errno.h>
#include <assert.h>

#include "busybox.h"

extern long bb_xgetlarg(char *arg, int base, long lower, long upper)
{
	long result;
	char *endptr;
	int errno_save = errno;

	assert(arg!=NULL);
	errno = 0;
	result = strtol(arg, &endptr, base);
	if (errno != 0 || *endptr!='\0' || result < lower || result > upper)
		show_usage();
	errno = errno_save;
	return result;
}

Index: Makefile.in
===================================================================
RCS file: /var/cvs/busybox/libbb/Makefile.in,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- Makefile.in	7 Mar 2003 17:29:12 -0000	1.17
+++ Makefile.in	7 Mar 2003 17:43:32 -0000	1.18
@@ -43,7 +43,7 @@
 	setup_environment.c simplify_path.c syscalls.c syslog_msg_with_name.c \
 	time_string.c trim.c u_signal_names.c vdprintf.c verror_msg.c \
 	vherror_msg.c vperror_msg.c wfopen.c xconnect.c xgetcwd.c xfuncs.c \
-	xgethostbyname.c xgethostbyname2.c xreadlink.c xregcomp.c bb_xgetlarg.c 
+	xgethostbyname.c xgethostbyname2.c xreadlink.c xregcomp.c xgetlarg.c 
 	
 
 LIBBB_OBJS=$(patsubst %.c,$(LIBBB_DIR)%.o, $(LIBBB_SRC))

--- bb_xgetlarg.c DELETED ---




More information about the busybox-cvs mailing list