Institut de Robòtica i Informàtica Industrial
KRD Group

The CuikSuite Project

error_world.c

Go to the documentation of this file.
00001 #include "error_world.h"
00002 
00003 #include "error.h"
00004 
00005 #include <stdlib.h>
00006 #include <stdio.h>
00007 
00045 unsigned int RWline=0; 
00046 
00047 int ReadWorlderror(const char *s) 
00048 { 
00049   char ErrorText[500];
00050 
00051   sprintf(ErrorText,"Syntax Error in .world file at line %u (%s)",RWline,s);
00052   Error(ErrorText);
00053 
00054   return(EXIT_FAILURE);
00055 }