Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gen/parse: Remove stdio.h includes | Marc | 2022-01-09 | 6 | -6/+0 |
| | |||||
* | core: Add a function to check if a tag is present by tag number | Marc | 2022-01-09 | 2 | -0/+25 |
| | |||||
* | core: Fix tag_iterator failure on empty tags. | Marc | 2022-01-09 | 1 | -4/+0 |
| | | | | | | | | | | | This code used to be `< 0`, but was changed to `<= 0` in commit d40ddfe. Thinking more about this, it's a bad idea to abort on 0 length tags, since it's completely valid for some tags (such as SSID) to be empty. It doesn't make sense to check if `tag_len` is below 0, because it's unsigned. So, remove the check completely. | ||||
* | test: Add ctests for generation functions. | Marc | 2021-12-17 | 18 | -56/+138 |
| | | | | | This commit also enforces error code checking on functions inside of the generation functions, such as for `libwifi_quick_add_tag`. | ||||
* | build: Unset hard dependency on clang in CMake | Marc | 2021-12-07 | 1 | -2/+2 |
| | | | | This commit also corrects a small warning for gcc. | ||||
* | Initial Commit | Marc | 2021-12-01 | 101 | -0/+8734 |
Signed-off-by: Marc <foxtrot@malloc.me> |