This repository has been archived on 2026-05-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LightTAM/include/file_handler.h
T

20 lines
350 B
C

/**
* @brief Temporary modul for user list handling.
*
*/
#ifndef __FILE_HANDLER_H__
#define __FILE_HANDLER_H__
#include "main.h"
#include "users.h"
#include "utils.h"
#include <string.h>
int loadListFromCSV(char* _filename, list_t * _list);
int saveListToCSV(char* _filename, list_t * _list);
int exportPersonInfo(node_t * _person);
#endif