summaryrefslogblamecommitdiffstats
path: root/common.h
blob: 15801eb8e8a865178fffece84647e00ad44ecb80 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                         


                   
                   
                   

 
















                                                                                                                         
/* See LICENSE file for copyright and license details. */
#include "libnumtext.h"
#include <ctype.h>
#include <errno.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>


#if defined(__clang__)
# pragma clang diagnostic ignored "-Wcovered-switch-default"
# pragma clang diagnostic ignored "-Wpadded"
#endif


#if defined(__clang__)
# define FALL_THROUGH __attribute__((fallthrough));
#else
# define FALL_THROUGH
#endif


#define UNICODE_MINUS "−"


ssize_t libnumtext_num2text_swedish__(char *outbuf, size_t outbuf_size, const char *num, size_t num_len, uint32_t flags);