dnl Process this file with autoconf to produce a configure script.
-dnl $Id: configure.in,v 1.6 2004/12/10 02:34:46 mrsam Exp $
+dnl $Id: configure.in,v 1.7 2010/03/19 01:09:26 mrsam Exp $
dnl
-dnl Copyright 1998 - 2004 Double Precision, Inc. See COPYING for
+dnl Copyright 1998 - 2010 Double Precision, Inc. See COPYING for
dnl distribution information.
AC_PREREQ(2.59)
dnl Checks for header files.
-AC_CHECK_HEADERS(unistd.h)
+AC_CHECK_HEADERS(unistd.h stdint.h)
+
+AC_CHECK_TYPE(int64_t, [ : ],
+ [
+ AC_DEFINE_UNQUOTED(int64_t,long long,[default definition of int64_t])
+ ])
dnl Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_UID_T
#define numlib_h
/*
-** Copyright 1998 - 2003 Double Precision, Inc.
+** Copyright 1998 - 2010 Double Precision, Inc.
** See COPYING for distribution information.
*/
extern "C" {
#endif
-static const char numlib_h_rcsid[]="$Id: numlib.h,v 1.10 2004/01/11 02:47:33 mrsam Exp $";
+static const char numlib_h_rcsid[]="$Id: numlib.h,v 1.11 2010/03/19 01:09:26 mrsam Exp $";
#if HAVE_CONFIG_H
#include "../numlib/config.h" /* VPATH build */
#endif
+#if HAVE_STDINT_H
+#include <stdint.h>
+#endif
+
#include <sys/types.h>
#include <time.h>
char *libmail_str_time_t(time_t, char *);
char *libmail_str_off_t(off_t, char *);
+char *libmail_str_int64_t(int64_t, char *);
char *libmail_str_pid_t(pid_t, char *);
char *libmail_str_dev_t(dev_t, char *);
char *libmail_str_ino_t(ino_t, char *);
/*
-** Copyright 1998 - 2002 Double Precision, Inc.
+** Copyright 1998 - 2010 Double Precision, Inc.
** See COPYING for distribution information.
*/
#include "numlib.h"
#include <string.h>
-static const char rcsid[]="$Id: strofft.c,v 1.5 2003/01/05 04:01:17 mrsam Exp $";
+static const char rcsid[]="$Id: strofft.c,v 1.6 2010/03/19 01:09:26 mrsam Exp $";
char *libmail_str_off_t(off_t t, char *arg)
{
return (strcpy(arg, p));
}
+
+char *libmail_str_int64_t(int64_t t, char *arg)
+{
+ char buf[NUMBUFSIZE];
+ char *p=buf+sizeof(buf)-1;
+ int isneg=0;
+
+ if (t < 0)
+ {
+ t= -t;
+ isneg=1;
+ }
+
+ *p=0;
+ do
+ {
+ *--p= '0' + (t % 10);
+ t=t / 10;
+ } while(t);
+
+ if (isneg)
+ *--p='-';
+
+ return (strcpy(arg, p));
+}
+
+
+