Commits
Commit:
3b198c7ca9e3473d97ae4a705fc432cd1d173eac
Date:
Thu Oct 7 18:05:36 2021
UTC
add some tests for the list parser
Commit:
661354bb042cc449324d8fbe24196d882f10115c
Date:
Thu Oct 7 18:03:18 2021
UTC
include compat.h to xc_SOURCES
Commit:
abcf47f32fd0549d041271ca1fe5cee3f8a75f25
Date:
Thu Oct 7 17:04:56 2021
UTC
free_list should remove items from the list
free_list would only free the memory of the items and not removing
them from the list, i.e. lefting dangling pointers.
We can fix it changing the loop. We could also drop the check in
configure.ac for SIMPLEQ_FOREACH_SAFE eventually since we're not using
it anymore, but I'll leave it in place for a bit still.
free_list would only free the memory of the items and not removing
them from the list, i.e. lefting dangling pointers.
We can fix it changing the loop. We could also drop the check in
configure.ac for SIMPLEQ_FOREACH_SAFE eventually since we're not using
it anymore, but I'll leave it in place for a bit still.
Commit:
98f1446cac69b11ee41a53bcd7c50c27f3858399
Date:
Thu Oct 7 16:18:04 2021
UTC
add a README
Commit:
9fb139f4e5ae43ad82bda7c5694981155ef7cd60
Date:
Thu Oct 7 16:18:04 2021
UTC
add compat for sys/queue.h
Commit:
b222bed8e90c03020af831d291ffde61306aae5b
Date:
Thu Oct 7 16:17:58 2021
UTC
add a list implementation
This adds a parser/formatter for lisp-style lists. It parses strings
containing a single list of atoms. The grammar is
'(' atoms* ')'
an atom can be a string, keyword, symbol or a number.
This adds a parser/formatter for lisp-style lists. It parses strings
containing a single list of atoms. The grammar is
'(' atoms* ')'
an atom can be a string, keyword, symbol or a number.
Commit:
d4bc3969e0e863ce00f19586bb95bd95278f2542
Date:
Fri Oct 1 11:07:15 2021
UTC
fixed __dead compat
Commit:
529d9e6e56a9e79384eb744a7a0d409eeedd8237
Date:
Thu Sep 30 19:59:36 2021
UTC
Add virtual-env through nix-shell
Commit:
6afb1350623f5aafc641de0118eeb65711af3543
Date:
Thu Sep 30 14:13:07 2021
UTC
implement the log level
Commit:
c81cadd01f88bcbae9ef315f9ecff40ec43235a8
Date:
Thu Sep 30 14:09:48 2021
UTC
missing break
Commit:
63f4108a1c3b373550af102a17d3f0bbb6f7d350
Date:
Thu Sep 30 14:02:36 2021
UTC
pledge & unveil
Commit:
5710b399f76fe0fc501e1d81cc5134623eb1dd70
Date:
Thu Sep 30 13:56:09 2021
UTC
add compat for bzero
Commit:
5808d63e66935a6c2883142701a60ec97cc57a7b
Date:
Thu Sep 30 13:53:38 2021
UTC
don't leave the password in memory
Commit:
2afa7c55d857b24c3b9e6db2a149cffd5442a050
Date:
Thu Sep 30 11:03:47 2021
UTC
add compat for __dead
Commit:
78cd00e8cf33122b5b72896172cc3daf5fb0eca3
Date:
Thu Sep 30 11:00:05 2021
UTC
fix readpassphrase compat
Omar Polo