Changeset 900 in MondoRescue for trunk/mondo/src/include
- Timestamp:
- Oct 24, 2006, 8:49:18 AM (19 years ago)
- Location:
- trunk/mondo/src/include
- Files:
-
- 4 added
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/mondo/src/include/mr_str.h
r895 r900 1 /* mr_string.h 2 * 1 /* 3 2 * $Id$ 4 3 * 5 * Header file of mr_str ing: a set of function manipulating strings4 * Header file of mr_str.c: a set of function manipulating strings 6 5 * Provided under the GPL v2 7 6 */ 8 7 9 #ifndef MR_STR ING_H10 #define MR_STR ING_H8 #ifndef MR_STR_H 9 #define MR_STR_H 11 10 12 11 /* functions (public methods) */ … … 15 14 extern char *mr_stresc(char *instr, char *toesc, const char escchr); 16 15 17 #endif /* MR_STR ING_H */16 #endif /* MR_STR_H */ -
trunk/mondo/src/include/my-stuff.h
r849 r900 294 294 */ 295 295 #define paranoid_system(x) {if(system(x)) log_msg(4, x); } 296 297 /**298 * Free @p x and set it to NULL.299 */300 #define paranoid_free(x) {if ((x) != NULL) free(x); (x)=NULL;}301 296 302 297 /**
Note:
See TracChangeset
for help on using the changeset viewer.