Bump version for development.
[libpwmd.git] / src / misc.h
blob6983fd1733b7415b9476fe1f49eeed68cee4532c
1 /*
2 Copyright (C) 2006-2024 Ben Kibbey <bjk@luxsci.net>
4 This file is part of libpwmd.
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License version 2.1 as published by the Free Software Foundation.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
18 USA
20 #ifndef MISC_H
21 #define MISC_H
23 #include "types.h"
25 #ifndef __MINGW32__
26 #include <pwd.h>
28 char *_expand_homedir (char *str, struct passwd *pw);
29 char *_getpwuid (struct passwd *pwd);
30 #endif
32 char *_percent_escape (const char *atext);
33 gpg_error_t parse_hostname_common (const char *str, char **host, int *port);
34 char *bin2hex (const unsigned char *data, size_t len);
35 gpg_error_t set_non_blocking (assuan_fd_t fd, int n);
37 #endif