You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
512 B
19 lines
512 B
9 years ago
|
/* Copyright 2016 Alex 'AdUser' Z (ad_user@runbox.com)
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
#ifndef F2B_COMMANDS_H_
|
||
|
#define F2B_COMMANDS_H_
|
||
|
|
||
|
/* yes, i know about LINE_MAX */
|
||
|
#define INPUT_LINE_MAX 256
|
||
|
#define CMD_TOKENS_MAX 6
|
||
|
|
||
|
void f2b_cmd_help();
|
||
|
enum f2b_cmsg_type
|
||
|
f2b_cmd_parse(const char *src, char *buf, size_t buflen);
|
||
|
|
||
|
#endif /* F2B_COMMANDS_H_ */
|