histui/source/bash_history.l
2024-08-07 00:45:52 +02:00

15 lines
288 B
Bash

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