Loading...
Searching...
No Matches
cli.h
1#pragma once
2
3/*
4 * Compatibility header for ease of porting existing apps.
5 * In short:
6 * Cli* is replaced with with CliRegistry*
7 * cli_* functions are replaced with cli_registry_* functions
8 * (i.e., cli_add_command() is now cli_registry_add_command())
9*/
10
12
13#define RECORD_CLI "cli"
API for registering commands with a CLI shell.