projects
/
mmh
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
mhpgp: Bugfix for 2932d136debcf53a45c44891ee80e6d34e61f109
[mmh]
/
h
/
utils.h
1
/*
2
** utils.h -- utility prototypes
3
*/
4
5
void *mh_xmalloc(size_t);
6
void *mh_xrealloc(void *, size_t);
7
char *pwd(void);
8
char *add(char *, char *);
9
void create_folder(char *, int, void (*)(int));
10
int num_digits(int);
11
12
struct msgs_array {
13
int max, size;
14
char **msgs;
15
};
16
17
void app_msgarg(struct msgs_array *, char *);