mirror of
https://github.com/valinet/ExplorerPatcher.git
synced 2025-02-10 07:58:27 +01:00
20 lines
352 B
C
20 lines
352 B
C
#ifndef _H_GETLINE_H_
|
|
#define _H_GETLINE_H_
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <BaseTsd.h>
|
|
typedef SSIZE_T ssize_t;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
ssize_t getdelim(char** buf, size_t* bufsiz, int delimiter, FILE* fp);
|
|
|
|
ssize_t getline(char** buf, size_t* bufsiz, FILE* fp);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |