mirror of https://github.com/BOINC/boinc.git
26 lines
354 B
C
26 lines
354 B
C
/* Local variables: */
|
|
/* c-file-style: "linux" */
|
|
/* End: */
|
|
|
|
#ifndef __DC_API_CONDOR_UTILS_H_
|
|
#define __DC_API_CONDOR_UTILS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
extern int _DC_mkdir_with_parents(char *dn, mode_t mode);
|
|
extern int _DC_rm(char *name);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/* End of condor/condor_utils.h */
|