This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ics_cli/src/read_until_nl.h
2023-08-15 16:31:07 +02:00

6 lines
173 B
C

#pragma once
// this function will read until the next newline character
// and save the characters in a string you provide in arg2
int read_until_nl(int fd, char line[]);