mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-17 23:06:25 -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'.
11 lines
203 B
C
11 lines
203 B
C
/* util.h -- utility functions */
|
|
#ifndef _UTIL_H_
|
|
#define _UTIL_H_
|
|
|
|
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
|
|
|
|
void mystrscpy( char *dst, const char *src, int size) ;
|
|
|
|
#endif
|
|
/* end of util.h */
|