Files

8 lines
84 B
C
Raw Permalink Normal View History

2024-05-19 12:58:22 +02:00
#ifndef _C_STRLIB_H
#define _C_STRLIB_H
int abs(int n);
2025-01-18 09:44:01 +01:00
long labs(long n);
2024-05-19 12:58:22 +02:00
#endif