1 #ifndef _RMOBJ_H_ 2 #define _RMOBJ_H_ 3 4 /* 5 * rmobj() - Remove the specified object. If the specified object is a 6 * directory, recursively remove everything inside of it. If 7 * there are any problems, set errmsg (if it is not NULL) and 8 * return -1. Otherwise return 0. 9 */ 10 int rmobj( char *object , char **errmesg ); 11 12 #endif 13