update README

laumann
Jun 26, 2023, 9:43 AM
QAXGMU5LFU2WM6FTXJG4RVGWSTXESTQRWFH27GZBBK3W74JEXRUQC

Dependencies

Change contents

  • replacement in README.md at line 11
    [3.291][2.0:38]()
    To build you need a compiler for C99,
    [3.291]
    [2.38]
    To build you need a compiler for C11,
  • replacement in README.md at line 64
    [3.506][3.5475:5605]()
    Structs are the only types that should be declared with a capital
    letter. Simple types should be declared with lowercase letters.
    [3.506]
    [3.571]
    Use typedef sparingly, only for creating an alias for a type. Structs
    should not be typedef'd, instead we use the `struct` keyword. Names
    should be lowercase, preferably without underscores.
  • replacement in README.md at line 71
    [3.451][3.451:481]()
    typedef struct {
    ...
    } Edit;
    [3.451]
    [3.481]
    struct changeheader {
    ...
    };