/* Dokumentation im Original leider fehlend. Gruppe Führer, Pracser, Schmied Projekt ??? Version ??? vom 2002.03.04 / 22:35 Module: fps.h, main.cpp abfrage.cpp, ansi2ascii.cpp, aufteilen,cpp, ausgabe.cpp, lesen.cpp, parse.cpp Dieses Modul: parse.cpp Autor: ??? */ #include "fps.h" int parse ( char *line, char *Teil, int found) { char c; int i; i=1; c=line[found]; while (c>13) { Teil[i++]= c; found++; c=line[found]; } printf("%s",Teil); Teil[i]='\0'; return found; } // eof parse.cpp