File: nss.h

package info (click to toggle)
glibc 2.36-9%2Bdeb12u8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 299,264 kB
  • sloc: ansic: 1,055,008; asm: 324,893; makefile: 15,054; python: 12,603; sh: 10,884; cpp: 5,685; awk: 1,883; perl: 518; yacc: 292; pascal: 182; sed: 39
file content (23 lines) | stat: -rw-r--r-- 698 bytes parent folder | download | duplicates (23)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _NSS_H
#include <nss/nss.h>

#ifndef _ISOMAC

# include <stddef.h>
# include <stdint.h>

# define NSS_INVALID_FIELD_CHARACTERS ":\n"
extern const char __nss_invalid_field_characters[] attribute_hidden;

_Bool __nss_valid_field (const char *value) attribute_hidden;
_Bool __nss_valid_list_field (char **list)  attribute_hidden;
const char *__nss_rewrite_field (const char *value, char **to_be_freed)
  attribute_hidden;

/* Compute a hash value for LENGTH bytes starting at KEY.  This is the
   hash function used by the nscd for the cache mapping files.  */
uint32_t __nss_hash (const void *__key, size_t __length);
libc_hidden_proto (__nss_hash)

#endif /* !_ISOMAC */
#endif /* _NSS_H */