mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 23:36:23 -05:00
Renaud Fivet
b4d69118f5
Finish tagging BBINDABLE functions. Modify forward-character to handle combined Unicode. Bump up version number and set default program name as 'ue'.
13 lines
193 B
C
13 lines
193 B
C
/* wrapper.h -- */
|
|
#ifndef WRAPPER_H_
|
|
#define WRAPPER_H_
|
|
|
|
#include <stdlib.h> /* size_t */
|
|
|
|
void xmkstemp( char *fname_template) ;
|
|
|
|
void *xmalloc( size_t size) ;
|
|
|
|
#endif
|
|
/* end of wrapper.h */
|