* lib/mu-util: add mu_util_read_password

This commit is contained in:
djcb
2012-09-13 22:56:08 +03:00
parent c19b38654b
commit 52bc720258
2 changed files with 34 additions and 0 deletions

View File

@ -179,6 +179,16 @@ gboolean mu_util_printerr_encoded (const char *frm, ...) G_GNUC_PRINTF(1,2);
/**
* read a password from stdin (without echoing), and return it.
*
* @param prompt the prompt text before the password
*
* @return the password (free with g_free), or NULL
*/
char* mu_util_read_password (const char *prompt)
G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT;
/**
* Try to 'play' (ie., open with it's associated program) a file. On
* MacOS, the the program 'open' is used for this; on other platforms