clean-temp: Document limitations.
[gnulib.git] / lib / di-set.h
blobbec5b3f9e4560b29a3aed5d63797e9e28a0a93b0
1 #ifndef _GL_DI_SET_H
2 # define _GL_DI_SET_H
4 # include <sys/types.h>
6 struct di_set *di_set_alloc (void);
7 int di_set_insert (struct di_set *, dev_t, ino_t) _GL_ATTRIBUTE_NONNULL ((1));
8 void di_set_free (struct di_set *) _GL_ATTRIBUTE_NONNULL ((1));
9 int di_set_lookup (struct di_set *dis, dev_t dev, ino_t ino)
10 _GL_ATTRIBUTE_NONNULL ((1));
12 #endif