blob: 8316d38ae84ae848e6bb1419e24fa0a738cac862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/***************************************************************
__MPU_STRERROR.H
This file contains MATH ERROR messages operation
functions & data declarations.
PART OF : MPU - library .
USAGE : Internal only .
NOTE : Include "libmpu.h" before this FILE .
Copyright (C) 2000 - 2024 by Andrew V.Kosteltsev.
All Rights Reserved.
***************************************************************/
#ifndef __MPU_STRERROR_H
#define __MPU_STRERROR_H
#ifdef __cplusplus
extern "C" {
#endif
extern __mpu_utf8_t *
__mpu_utf8mpu_error ( int who, __mpu_error_t errnum );
#ifdef __cplusplus
} /* ... extern "C" */
#endif
#endif /* __MPU_STRERROR_H */
|