blob: 23eb58bd7b83f4c5c02ffb1df8c6469d49d0bcc4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef GETLN_H
#define GETLN_H
#include "buffer.h"
#include "stralloc.h"
extern int getln(buffer *,stralloc *,int *,int);
extern int sgetln(buffer *,stralloc *,char **,unsigned int *,int);
#endif
|