From 186d059c3802eeca1cafc1aa592196bcd27cd5b8 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Sat, 6 Oct 2018 12:02:16 +0200 Subject: [PATCH] mescc: Mes C Library: Add ultoa. * lib/mes/ultoa.c: New file. * lib/libmes.c: Include it. * include/libmes.h: Declare ultoa. --- include/libmes.h | 3 ++- lib/libmes.c | 1 + lib/mes/ultoa.c | 27 +++++++++++++++++++++++++++ lib/mes/utoa.c | 2 +- 4 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 lib/mes/ultoa.c diff --git a/include/libmes.h b/include/libmes.h index 18764668..8dd439d7 100644 --- a/include/libmes.h +++ b/include/libmes.h @@ -28,7 +28,8 @@ long abtol (char const** p, int base); char const* ntoab (long number, int base, int signed_p); char const* itoa (int number); char const* ltoa (long number); -char const* utoa (unsigned long number); +char const* ultoa (unsigned long number); +char const* utoa (unsigned number); char const* ltoab (long x, int base); int atoi (char const *s); int eputc (int c); diff --git a/lib/libmes.c b/lib/libmes.c index fcf333cb..d3266186 100644 --- a/lib/libmes.c +++ b/lib/libmes.c @@ -34,6 +34,7 @@ #include #include #include +#include #include #include #include diff --git a/lib/mes/ultoa.c b/lib/mes/ultoa.c new file mode 100644 index 00000000..40461f18 --- /dev/null +++ b/lib/mes/ultoa.c @@ -0,0 +1,27 @@ +/* -*-comment-start: "//";comment-end:""-*- + * GNU Mes --- Maxwell Equations of Software + * Copyright © 2018 Jan (janneke) Nieuwenhuizen + * + * This file is part of GNU Mes. + * + * GNU Mes is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * GNU Mes is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GNU Mes. If not, see . + */ + +#include + +char const* +ultoa (unsigned long x) +{ + return ntoab (x, 10, 1); +} diff --git a/lib/mes/utoa.c b/lib/mes/utoa.c index d67c8d64..c6e90e9b 100644 --- a/lib/mes/utoa.c +++ b/lib/mes/utoa.c @@ -21,7 +21,7 @@ #include char const* -utoa (unsigned long x) +utoa (unsigned x) { return ntoab (x, 10, 0); }