make it possible to use libsl from c++

From: Mattias Amnefelt <mattiasa@kth.se>


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13415 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2004-03-02 22:04:57 +00:00
parent b481ccdcae
commit 3224391860

View File

@@ -49,6 +49,10 @@ struct sl_cmd {
typedef struct sl_cmd SL_cmd;
#ifdef __cplusplus
extern "C" {
#endif
void sl_help (SL_cmd *, int argc, char **argv);
int sl_loop (SL_cmd *, const char *prompt);
int sl_command_loop (SL_cmd *cmds, const char *prompt, void **data);
@@ -56,5 +60,8 @@ int sl_command (SL_cmd *cmds, int argc, char **argv);
int sl_make_argv(char*, int*, char***);
void sl_apropos (SL_cmd *cmd, const char *topic);
#ifdef __cplusplus
}
#endif
#endif /* _SL_H */