headcrab 0.1.0

A modern Rust debugging library.
Documentation
1
2
3
4
5
6
7
8
9
#include <stdio.h>

char *STATICVAR = "Hello, world!\n";
char *STATICVAR2 = "Goodbye, cruel world...\n";

int main() {
  printf(STATICVAR);
  return 0;
}