#include "nOS.h"
extern void oldses();
extern void runraw();

int strcmp(const char *s1, const char *s2);
void splash();
void run();

int strcmp(const char *s1, const char *s2)
{
  while (*s1 == *s2)
  {
    if (*s1 == 0)
      return true;
    s1++;
    s2++;
  }
  return false;
}

void splash()
{
  /* graph();
   plot(100,100,1);
   pause();
   text();
   oldses(); */
}

void run(char* file)
{
	runraw(file);
}


