2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-03-26 08:13:29 +00:00
Files
xNBA/src/include/ipxe/command.h
Michael Brown a281c4080b [cmdline] Add generic concat_args() function
Signed-off-by: Michael Brown <mcb30@ipxe.org>
2011-03-07 19:21:43 +00:00

29 lines
568 B
C

#ifndef _IPXE_COMMAND_H
#define _IPXE_COMMAND_H
FILE_LICENCE ( GPL2_OR_LATER );
#include <ipxe/tables.h>
/** A command-line command */
struct command {
/** Name of the command */
const char *name;
/**
* Function implementing the command
*
* @v argc Argument count
* @v argv Argument list
* @ret rc Return status code
*/
int ( * exec ) ( int argc, char **argv );
};
#define COMMANDS __table ( struct command, "commands" )
#define __command __table_entry ( COMMANDS, 01 )
extern char * concat_args ( char **args );
#endif /* _IPXE_COMMAND_H */