diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-11-22 10:03:07 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-11-22 10:03:07 +0100 |
commit | 38bf64b415376f1419cd798fd753736960355bf5 (patch) | |
tree | c9b725f2bf140641fc9faf7bbe7d5786183158e1 /src/passphrase.h | |
parent | update copying notice (diff) | |
download | libpassphrase-38bf64b415376f1419cd798fd753736960355bf5.tar.gz libpassphrase-38bf64b415376f1419cd798fd753736960355bf5.tar.bz2 libpassphrase-38bf64b415376f1419cd798fd753736960355bf5.tar.xz |
first version
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/passphrase.h')
-rw-r--r-- | src/passphrase.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/passphrase.h b/src/passphrase.h index 8dbc39d..9a1baa5 100644 --- a/src/passphrase.h +++ b/src/passphrase.h @@ -23,19 +23,19 @@ /** * Reads the passphrase from stdin * - * @return The passphrase, should be `free`:ed + * @return The passphrase, should be wiped `free`:ed, `NULL` on error */ -char* get_passphrase(void); +extern char* get_passphrase(void); /** * Disable echoing and do anything else to the terminal settnings `get_passphrase` requires */ -void disable_echo(void); +extern void disable_echo(void); /** * Undo the actions of `disable_echo` */ -void reenable_echo(void); +extern void reenable_echo(void); #endif |