mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-02 10:33:23 -05:00
12 lines
152 B
C
12 lines
152 B
C
|
|
||
|
#ifndef __MISC_H__
|
||
|
#define __MISC_H__
|
||
|
|
||
|
int
|
||
|
safe_atoi(const char *str, int *val);
|
||
|
|
||
|
int
|
||
|
safe_atol(const char *str, long *val);
|
||
|
|
||
|
#endif /* !__MISC_H__ */
|