Abbreviated multi-part command recognition C library
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
Ondřej Hruška 89f3d40a5c
add readme
4 anni fa
test Initial 4 anni fa
.gitignore Initial 4 anni fa
CMakeLists.txt Initial 4 anni fa
LICENSE.txt Initial 4 anni fa
Makefile Initial 4 anni fa
README.md add readme 4 anni fa
prefix_match.c Initial 4 anni fa
prefix_match.h Initial 4 anni fa

README.md

prefix_match

Abbreviated multi-part command / word sequence recognition.

Supports partial match (only some command words), individual multi-part command word abbreviating, as well as (obviously) simple single-word commands and their abbreviations.

Can recognize things like "ip i s d" as "ip interface set down" or "r a" as "route add", if there is no ambiguity among the provided options. Supports more than one delimiter at a time (e.g, colon, hyphen, underscore, space, tab, whatever). Leading and trailing delimiters and duplicate delimiters are ignored.

Inspect the unit test suite and doc comments in the header file for more info and examples of use.