chiark
/
gitweb
/
~mdw
/
qmail
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Debianization for 1.01-2
[qmail]
/
readsubdir.h
1
#ifndef READSUBDIR_H
2
#define READSUBDIR_H
3
4
#include "direntry.h"
5
6
typedef struct readsubdir
7
{
8
DIR *dir;
9
int pos;
10
char *name;
11
void (*pause)();
12
}
13
readsubdir;
14
15
extern void readsubdir_init();
16
extern int readsubdir_next();
17
18
#define READSUBDIR_NAMELEN 10
19
20
#endif