From 6075feb4875ed2035de460fcdc7858f314ad0bef Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sat, 21 Jan 2017 14:20:55 +0000 Subject: create netsurf inttypes header to have portable integer formatting macros --- include/netsurf/inttypes.h | 59 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 include/netsurf/inttypes.h (limited to 'include/netsurf') diff --git a/include/netsurf/inttypes.h b/include/netsurf/inttypes.h new file mode 100644 index 000000000..874d83f3d --- /dev/null +++ b/include/netsurf/inttypes.h @@ -0,0 +1,59 @@ +/* + * Copyright 2017 Vincent Sanders + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * NetSurf 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; version 2 of the License. + * + * NetSurf 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 this program. If not, see . + */ + +/** + * \file + * Netsurf additional integer type formatting macros. + */ + +#ifndef NETSURF_INTTYPES_H +#define NETSURF_INTTYPES_H + +#include + +#ifndef PRIxPTR +#define PRIxPTR "x" +#endif + +#ifndef PRId64 +#define PRId64 "lld" +#endif + +/* Windows does not have sizet formating codes */ +#if defined(_WIN32) + +/** windows printf formatting for size_t type */ +#define PRIsizet "Iu" + +/** windows printf formatting for ssize_t type */ +#define PRIssizet "Id" + +#else + +/** c99 standard printf formatting for size_t type */ +#define PRIsizet "zu" + +/** c99 standard printf formatting for ssize_t type */ +#define PRIssizet "zd" + +#endif + + + +#endif + -- cgit v1.2.3