update README
Dependencies
- [2]
UHHEEY5JUpdate README with build instructions using muon + samurai - [3]
GCZYAURZupdate README - [4]
PSIORGCKUpdate README - [5]
K67E4BLTList dependencies in README - [6]
WNZP5NXYUpdate README - [7]
LSPDLO7RUpdate README - [8]
2U7P5SFQChange struct names "struct foo -> typedef struct Foo" - [*]
RRUEU4S3init
Change contents
- replacement in README.md at line 11
To build you need a compiler for C99,To build you need a compiler for C11, - replacement in README.md at line 64
Structs are the only types that should be declared with a capitalletter. Simple types should be declared with lowercase letters.Use typedef sparingly, only for creating an alias for a type. Structsshould not be typedef'd, instead we use the `struct` keyword. Namesshould be lowercase, preferably without underscores. - replacement in README.md at line 71
typedef struct {...} Edit;struct changeheader {...};