mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
13 lines
231 B
C
13 lines
231 B
C
// Utility functions for desktop programs
|
|
|
|
#ifndef __DESKUTILS_H__
|
|
#define __DESKUTILS_H__
|
|
|
|
#include "type.h"
|
|
#include <stddef.h>
|
|
|
|
int secure_atoi( const char *str, long *pres );
|
|
char* l_strndup( const char* s, size_t n );
|
|
|
|
#endif
|