tiny_strerror.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2021 ML!PA Consulting GmbH
3  * 2022 Otto-von-Guericke-Universität Magdeburg
4  *
5  * This file is subject to the terms and conditions of the GNU Lesser
6  * General Public License v2.1. See the file LICENSE in the top level
7  * directory for more details.
8  */
9 
44 #ifndef TINY_STRERROR_H
45 #define TINY_STRERROR_H
46 
47 #include <errno.h>
48 #include <string.h>
49 
50 #ifdef __cplusplus
51 extern "C" {
52 #endif
53 
76 const char *tiny_strerror(int errnum);
77 
78 #ifdef __cplusplus
79 }
80 #endif
81 
82 #endif /* TINY_STRERROR_H */
const char * tiny_strerror(int errnum)
Get the name of an errno macro.