blob: 4341237c5f1ed010c3cf51ba7da056155d107b25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* Copyright (c) 2003-2004, Roger Dingledine
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
* Copyright (c) 2007-2020, The Tor Project, Inc. */
/* See LICENSE for licensing information */
/**
* \file userdb.h
*
* \brief Header for userdb.c
**/
#ifndef TOR_USERDB_H
#define TOR_USERDB_H
#include "orconfig.h"
#ifndef _WIN32
#include <sys/types.h>
struct passwd;
const struct passwd *tor_getpwnam(const char *username);
const struct passwd *tor_getpwuid(uid_t uid);
char *get_user_homedir(const char *username);
#endif /* !defined(_WIN32) */
#endif /* !defined(TOR_USERDB_H) */
|