Stock Control System
Loading...
Searching...
No Matches
DataFile.h
1//
2// Created by owd on 9/5/25.
3//
4
5#ifndef STOCKCONTROL_DATAFILE_H
6#define STOCKCONTROL_DATAFILE_H
7
8#include <stdio.h>
9
10FILE * datafile_create(const char * filename);
11
12void datafile_delete(FILE ** this);
13
14#endif // STOCKCONTROL_DATAFILE_H