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); }