#include "parser_f.h"
-/* returns pointer to next line or end of buffer */
+/* returns pointer to next line or after the end of buffer */
char* eat_line(char* buffer, unsigned int len)
{
char* nl;
-/* returns pointer to first non white char or to the end of the buffer */
+/* returns pointer to first non white char or after the end of the buffer */
char* eat_space(char* buffer, unsigned int len)
{
char* p;