7 lines
174 B
C
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[]);
|