06e9d99925
Signed-off-by: Chloe M. <chloe@mensia.org>
20 lines
304 B
C
20 lines
304 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: Command line
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#ifndef _EX_CMDLINE_H_
|
|
#define _EX_CMDLINE_H_ 1
|
|
|
|
#include <stdef.h>
|
|
|
|
/*
|
|
* Initialize the command line parser
|
|
*/
|
|
VOID ExCmdLineInit(VOID);
|
|
|
|
#endif /* !_EX_CMDLINE_H_ */
|