/** diese Routine macht eigentlich gar nichts, ist das nicht toll?
 *
 *  @short ruft parseCommentLine() auf.
 *  @varargs parseComments
 *
 *  @param comment aktueller Comment
 *  @param s zu parsende Zeile
 *
 *  @return comment der aktuelle Comment, oder NULL, wenn er in
 *          dieser Zeile zu Ende gegangen ist.
 *
 *  @title COPYRIGHT Copyright 1999 pinc Software, Axel Drfler.
 *
 *  @tag GTDA_Try (BOOL) - tut irgendwas und wenn nicht, dann
 *       sollte er immer noch hupen.
 *  @tag GTDA_Idiot (BOOL) - lt den Rechner abstrzen.
 *
 *  @bugs funktioniert noch nicht ganz so, wie es soll.
 *
 *  @main etwas macht sie dann aber doch noch. Mittlerweile :-)
 */

struct Comment *parseComment(reg (a0) struct Comment *comment,reg (a1) STRPTR s)
{
  if (!c || !s)
    return(NULL);

  for(;isspace(*s);s++);
  for(;*s == '*';s++);
  for(;isspace(*s);s++);

  return(parseCommentLine(c,s) ? c : NULL);
}



