slash

slash is a simple type-oriented programming language
Log | Files | Refs | README | LICENSE

stat.c (155B)


      1 /*
      2  * stat.c -- status implementation
      3  */
      4 
      5 #include "stat.h"
      6 
      7 #include <string.h>
      8 
      9 stat_t stat;
     10 
     11 void
     12 initstat(void)
     13 {
     14 	memset(&stat, 0, sizeof(stat));
     15 }
     16