generic circular buffer implementation in C
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
circbuf/matcher
Ondřej Hruška 891c07f5fb moved to folders, updated etc 10 年前
..
README.md moved to folders, updated etc 10 年前
matcher.c moved to folders, updated etc 10 年前
matcher.h moved to folders, updated etc 10 年前

README.md

Character stream pattern matcher

Matcher can be used for detecting a pattern in a stream of characters. With each incoming character, call matcher_test().

It will return true if the character completed a match.

Applications

This buffer was designed for parsing responses to AT commands from ESP8266.

It can be used for any similar purpose.