mirror of
https://github.com/valinet/ExplorerPatcher.git
synced 2025-02-12 00:43:04 +01:00
12 lines
275 B
C
12 lines
275 B
C
|
#ifndef _H_GETLINE_H_
|
||
|
#define _H_GETLINE_H_
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <BaseTsd.h>
|
||
|
typedef SSIZE_T ssize_t;
|
||
|
|
||
|
ssize_t getdelim(char** buf, size_t* bufsiz, int delimiter, FILE* fp);
|
||
|
|
||
|
ssize_t getline(char** buf, size_t* bufsiz, FILE* fp);
|
||
|
|
||
|
#endif
|