mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-27 01:38:37 -05:00
26 lines
650 B
C
26 lines
650 B
C
|
/*
|
||
|
* Command line editing and history
|
||
|
* Copyright (c) 2010, Jouni Malinen <j@w1.fi>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 as
|
||
|
* published by the Free Software Foundation.
|
||
|
*
|
||
|
* Alternatively, this software may be distributed under the terms of BSD
|
||
|
* license.
|
||
|
*
|
||
|
* See README and COPYING for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef EDIT_H
|
||
|
#define EDIT_H
|
||
|
|
||
|
int edit_init(void (*cmd_cb)(void *ctx, char *cmd),
|
||
|
void (*eof_cb)(void *ctx),
|
||
|
void *ctx);
|
||
|
void edit_deinit(void);
|
||
|
void edit_clear_line(void);
|
||
|
void edit_redraw(void);
|
||
|
|
||
|
#endif /* EDIT_H */
|