This project aims to enhance the working environment on Windows
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
275 B

#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