13 lines
301 B
C
13 lines
301 B
C
#ifndef _DIRSESSION_H
|
|
#define _DIRSESSION_H
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
int islocked(char *, int, int, int); /* Is directory locked */
|
|
int setlock(char *, int, int); /* Lock directory */
|
|
void remlock(char *, int, int); /* Unlock directory */
|
|
void dirinbound(void); /* Process nodes */
|
|
|
|
#endif
|