mirror of
https://github.com/onyx-and-iris/vmrcli.git
synced 2024-11-15 17:40:56 +00:00
onyx-and-iris
1199b31e2c
log message updated to reflect new kinds replace_multiple_space_with_one() now returns new line length kind_as_string() added to util.c
9 lines
263 B
C
9 lines
263 B
C
#ifndef __UTIL_H__
|
|
#define __UTIL_H__
|
|
|
|
void remove_name_in_path(char *szPath);
|
|
int replace_multiple_space_with_one(char *s, size_t len);
|
|
char *kind_as_string(char *s, enum kind kind, int n);
|
|
char *version_as_string(char *, long v, int n);
|
|
|
|
#endif /* __UTIL_H__ */ |