mirror of
https://github.com/samba-team/samba.git
synced 2025-01-28 17:47:29 +03:00
72a5cbadc1
not available on some platforms but is a Samba-specific library. (This used to be commit e9d3660fa6678424e5159708a1aa572824926c8e)
10 lines
300 B
C
10 lines
300 B
C
#ifndef __SMBREADLINE_H__
|
|
#define __SMBREADLINE_H__
|
|
|
|
char *smb_readline(const char *prompt, void (*callback)(void),
|
|
char **(completion_fn)(const char *text, int start, int end));
|
|
const char *smb_readline_get_line_buffer(void);
|
|
void smb_readline_ca_char(char c);
|
|
|
|
#endif /* __SMBREADLINE_H__ */
|