histui/source/bash_history.l
2024-08-03 15:14:52 +02:00

14 lines
246 B
Bash

%{
#include "storage.hpp"
long timestamp;
%}
%option nodefault
%option noyywrap
%option nounput
%%
\#[[:digit:]]+ { timestamp = strtoll(yytext+1, NULL, 10);
}
.* { insert_entry(timestamp, yytext); }
\n { ; }
%%