mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
16 lines
335 B
C
16 lines
335 B
C
/*
|
|
*
|
|
* (c) 2004, 2005 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#ifndef __MISC_H__
|
|
#define __MISC_H__
|
|
|
|
extern unsigned char *c2pstring(char* s);
|
|
extern char *p2cstring(unsigned char* s);
|
|
extern void memdump(unsigned char* addr, unsigned long size);
|
|
extern void error(char *x) __attribute__ ((noreturn));
|
|
|
|
#endif /* __MISC_H__ */
|