blob: 4808ca258e19d77e668b44527712ff7294a5dc6e [file] [log] [blame]
alaffincc2e5552000-07-27 17:13:18 +00001#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 */
10int rmobj( char *object , char **errmesg );
11
12#endif