about summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
authorMarc <marc@malloc.me>2022-08-20 16:10:00 +0100
committerGitHub <noreply@github.com>2022-08-20 16:10:00 +0100
commit3be534eb2b75f4c3376bf61014c7a06d719cb9e3 (patch)
treebb15b431693890c51adb13784ad8b73c8c76bfde /README.md
parentec21e1ee1c2c475730b4b22a9f603e4b0ae7fb84 (diff)
downloadlibwifi-3be534eb2b75f4c3376bf61014c7a06d719cb9e3.tar.gz
libwifi-3be534eb2b75f4c3376bf61014c7a06d719cb9e3.tar.bz2
libwifi-3be534eb2b75f4c3376bf61014c7a06d719cb9e3.zip
Add macOS support (#8)
Add macOS build support
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/README.md b/README.md index bd036d8..542c061 100644 --- a/README.md +++ b/README.md
@@ -1,14 +1,15 @@
1# libwifi 1# libwifi
2802.11 Parsing / Generation library 2802.11 Parsing / Generation library
3 3
4| Build Status | OS | Architecture | 4| Build Status | OS |
5| ---------------------------------------------------------------------------------- | ------| ------------ | 5|---------------------------------------------------------------------------------------|-------|
6|![X86_64](https://github.com/libwifi/libwifi/actions/workflows/x86_64.yml/badge.svg) | Linux | x86_64 | 6|![linux](https://github.com/libwifi/libwifi/actions/workflows/linux_x86.yml/badge.svg) | Linux |
7|![macOS](https://github.com/libwifi/libwifi/actions/workflows/macos_x86.yml/badge.svg) | macOS |
7 8
8## What is this? 9## What is this?
9libwifi is a C library with a permissive license for generating and parsing a wide variety of 802.11 wireless frames (see the [Feature Checklist](https://libwifi.so/features)) on Linux with a few lines of straight forward code (see the [Examples section](#examples) below). 10libwifi is a C library with a permissive license for generating and parsing a wide variety of 802.11 wireless frames (see the [Feature Checklist](https://libwifi.so/features)) on Linux and macOS with a few lines of straight forward code (see the [Examples section](#examples) below).
10 11
11It is written with a simple-to-use approach while also exposing features that allow more advanced use, with clean and readable code being a priority. Other goals of the library include cross-architecture support, clean compilation without warnings and strict error checking. 12libwifi has been tested across Linux and macOS, on x86, MIPS and ARM, and is written with a simple-to-use approach while also exposing features that allow more advanced use, with clean and readable code being a priority. Other goals of the library include cross-architecture support, clean compilation without warnings and strict error checking.
12 13
13The library is fully documented with code comments in both the headers files and the code files. 14The library is fully documented with code comments in both the headers files and the code files.
14 15