histui/source/bash_history.l

15 lines
282 B
Bash

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