Mercurial > projects > libpws
comparison compat.h @ 2:97097b4b6bfb
Add pwsdump utility
The pwsdum utility can dump PasswordSafe database files to a plaintext format
and convert this format back into a PasswordSafe database.
author | Guido Berhoerster <guido+libpws@berhoerster.name> |
---|---|
date | Wed, 01 Apr 2015 14:57:57 +0200 |
parents | d541e748cfd8 |
children | 7fd61c245bbd |
comparison
equal
deleted
inserted
replaced
1:e1309515d111 | 2:97097b4b6bfb |
---|---|
34 | 34 |
35 #if !defined(HAVE_ENDIAN_H) && !defined(HAVE_SYS_ENDIAN_H) | 35 #if !defined(HAVE_ENDIAN_H) && !defined(HAVE_SYS_ENDIAN_H) |
36 #include "compat/endian.h" | 36 #include "compat/endian.h" |
37 #endif /* !defined(HAVE_ENDIAN_H) && !defined(HAVE_SYS_ENDIAN_H) */ | 37 #endif /* !defined(HAVE_ENDIAN_H) && !defined(HAVE_SYS_ENDIAN_H) */ |
38 | 38 |
39 #ifndef HAVE_ERR_H | |
40 #include "compat/err.h" | |
41 #endif /* !HAVE_ERR_H */ | |
42 | |
39 #ifndef HAVE_GETENTROPY | 43 #ifndef HAVE_GETENTROPY |
40 #include "compat/getentropy.h" | 44 #include "compat/getentropy.h" |
41 #endif /* !HAVE_GETENTROPY */ | 45 #endif /* !HAVE_GETENTROPY */ |
46 | |
47 #ifndef HAVE_GETLINE | |
48 #include "compat/getline.h" | |
49 #endif /* !HAVE_GETLINE */ | |
50 | |
51 #ifndef HAVE_READPASSPHRASE_H | |
52 #include "compat/readpassphrase.h" | |
53 #endif /* !HAVE_READPASSPHRASE_H */ | |
54 | |
55 #ifndef HAVE_SETPROGNAME | |
56 #include "compat/setprogname.h" | |
57 #endif /* !HAVE_SETPROGNAME */ | |
42 | 58 |
43 #ifndef HAVE_SYS_TREE_H | 59 #ifndef HAVE_SYS_TREE_H |
44 #include "compat/tree.h" | 60 #include "compat/tree.h" |
45 #endif /* !HAVE_SYS_TREE_H */ | 61 #endif /* !HAVE_SYS_TREE_H */ |
46 | 62 |
63 #ifndef HAVE_VIS_H | |
64 #include "compat/vis.h" | |
65 #endif /* !HAVE_VIS_H */ | |
66 | |
47 #endif /* COMPAT_H */ | 67 #endif /* COMPAT_H */ |