/* Gruppe Führer, Pracser, Schmied Projekt Teamarbeit Version 1.02 vom 2002.03.05 / 12:00 Module: fps.h, main.cpp abfrage.cpp, ansi2ascii.cpp, aufteilen,cpp, ausgabe.cpp, lesen.cpp, parse.cpp Dieses Modul: parse.cpp Autor: Pracser */ #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