mirror of
https://github.com/tmate-io/tmate.git
synced 2024-12-12 09:51:06 +01:00
17 lines
272 B
C
17 lines
272 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);
|
|
|
|
#endif /* __PKD_UTIL_H__ */
|