hjl / source-git / glibc

Forked from source-git/glibc 3 years ago
Clone

Blame include/nss.h

Packit 6c4009
#ifndef _NSS_H
Packit 6c4009
#include <nss/nss.h>
Packit 6c4009
Packit 6c4009
#ifndef _ISOMAC
Packit 6c4009
Packit 6c4009
# include <stddef.h>
Packit 6c4009
# include <stdint.h>
Packit 6c4009
Packit 6c4009
# define NSS_INVALID_FIELD_CHARACTERS ":\n"
Packit 6c4009
extern const char __nss_invalid_field_characters[] attribute_hidden;
Packit 6c4009
Packit 6c4009
_Bool __nss_valid_field (const char *value) attribute_hidden;
Packit 6c4009
_Bool __nss_valid_list_field (char **list)  attribute_hidden;
Packit 6c4009
const char *__nss_rewrite_field (const char *value, char **to_be_freed)
Packit 6c4009
  attribute_hidden;
Packit 6c4009
Packit 6c4009
/* Compute a hash value for LENGTH bytes starting at KEY.  This is the
Packit 6c4009
   hash function used by the nscd for the cache mapping files.  */
Packit 6c4009
uint32_t __nss_hash (const void *__key, size_t __length);
Packit 6c4009
libc_hidden_proto (__nss_hash)
Packit 6c4009
Packit 6c4009
#endif /* !_ISOMAC */
Packit 6c4009
#endif /* _NSS_H */