boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

00025.c (85B)


      1 int strlen(char *);
      2 
      3 int
      4 main()
      5 {
      6 	char *p;
      7 	
      8 	p = "hello";
      9 	return strlen(p) - 5;
     10 }