Skip to content

Instantly share code, notes, and snippets.

View niamtokik's full-sized avatar

Niamtokik niamtokik

View GitHub Profile
% Simple erlang parser.
-module(parser).
-compile([export_all]).
% Start char, with start State
-define(DATA_START(X, K),
data(<<X, Rest/bitstring>>, Buf, Ret) ->
data(Rest, Buf, Ret, K)).