• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdio.h>
2 #include <string.h>
3 #include <stdlib.h>
4 
main(int argc,char ** argv)5 int main (int argc, char **argv)
6 {
7   char *evil = getenv("EVIL");
8 
9   return 0;  // Set breakpoint here.
10 }
11