Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

app.cpp 322 B

2 tygodni temu
2 tygodni temu
2 tygodni temu
2 tygodni temu
1 tydzień temu
2 tygodni temu
1234567891011121314
  1. #include <stdio.h>
  2. #include "core.cpp"
  3. #include "core.h"
  4. int main(int argc, char **argv) {
  5. int statusCode = 0;
  6. initialiseCore();
  7. Arena *arena = arenaAlloc(Megabytes(64));
  8. list<string> args = getArgs(arena, argc, argv);
  9. prinft("%S", strSplit(arena, "-"_s, "hallo-world"_s));
  10. return statusCode;
  11. }