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/seek_string_a.h
2023-08-15 16:31:07 +02:00

7 lines
174 B
C

// this function will seek for a string in an open file
// it will place the file position AFTER that string
#pragma once
void seek_string_a(int fd, char search_string[]);