mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-04 20:30:38 +09:00
Signed-off-by: Nikhil V <nikhilgreyshines@gmail.com> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
17 lines
306 B
C
17 lines
306 B
C
/*
|
|
* pkd_keyutil.h --
|
|
*
|
|
* (c) 2014 Jon Simons
|
|
*/
|
|
|
|
#ifndef __PKD_UTIL_H__
|
|
#define __PKD_UTIL_H__
|
|
|
|
int system_checked(const char *cmd);
|
|
|
|
/* Is client 'X' enabled? */
|
|
int is_openssh_client_enabled(void);
|
|
int is_dropbear_client_enabled(void);
|
|
int is_putty_client_enabled(void);
|
|
|
|
#endif /* __PKD_UTIL_H__ */ |