]> arthur.barton.de Git - netatalk.git/blob - libatalk/cnid/hash/cnid_hash_get.c
8117bcbf9e2898067b1928af824243faf90b89d2
[netatalk.git] / libatalk / cnid / hash / cnid_hash_get.c
1 /*
2  * $Id: cnid_hash_get.c,v 1.1.2.1 2003-09-09 16:42:21 didg Exp $
3  */
4
5 #ifdef HAVE_CONFIG_H
6 #include "config.h"
7 #endif /* HAVE_CONFIG_H */
8
9 #ifdef CNID_BACKEND_HASH
10
11 #include "cnid_hash.h"
12
13 /* Return CNID for a given did/name. */
14 cnid_t cnid_hash_get(struct _cnid_db *cdb, const cnid_t did, const char *name, const int len)
15 {
16     return CNID_INVALID;
17 }
18
19 #endif /* CNID_BACKEND_HASH */