mirror of
https://github.com/rfivet/uemacs.git
synced 2025-11-23 11:41:15 -05:00
Bindable functions take a boolean as flag.
Emphasize which one always return TRUE. Use mloutfail() to introduce consistency when a function fails with error message.
This commit is contained in:
6
util.h
6
util.h
@@ -1,7 +1,9 @@
|
||||
/* util.h -- utility functions */
|
||||
#ifndef UTIL_H_
|
||||
#define UTIL_H_
|
||||
# define UTIL_H_
|
||||
|
||||
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
|
||||
void mystrscpy(char *dst, const char *src, int size);
|
||||
void mystrscpy( char *dst, const char *src, int size) ;
|
||||
|
||||
#endif /* UTIL_H_ */
|
||||
/* end of util.h */
|
||||
|
||||
Reference in New Issue
Block a user