2016-12-26 18:50:51 +01:00
|
|
|
/**
|
|
|
|
* @file files.h
|
|
|
|
* @author Deathsbreed <deathsbreed@themusicinnoise.net>
|
|
|
|
* @brief Functions to deal with file I/O of primes.
|
|
|
|
* @details Functions that input, output, and export primes from/to files.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "list.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Load primes from an Indivisible file into a List.
|
|
|
|
* @param file File to input primes from.
|
|
|
|
* @param list List to load primes into.
|
|
|
|
* @returns If 0 then load was successful, if 1 then failed to open,
|
2016-12-28 00:30:31 +01:00
|
|
|
* if 2 failed to close, if 3 failed to allocate new memory to List
|
|
|
|
* (see `addToList()')
|
2016-12-26 18:50:51 +01:00
|
|
|
*/
|
|
|
|
int inputPrimes(char *file, List *list);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Output primes from a List into an Indivisible file.
|
|
|
|
* @param file File to output primes to.
|
|
|
|
* @param list List to read primes from.
|
|
|
|
* @returns If 0 then load was successful, if 1 then failed to open,
|
|
|
|
* if 2 failed to close, if 3 failed when writing.
|
|
|
|
*/
|
|
|
|
int outputPrimes(char *file, List *list);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Export primes from a List to a plain text file.
|
2017-02-02 19:53:29 +01:00
|
|
|
* @param efile File to export primes as plain text to.
|
|
|
|
* @param dfile File to read primes from.
|
2016-12-26 18:50:51 +01:00
|
|
|
* @param base The base in which the primes will be written.
|
|
|
|
* @returns If 0 then load was successful, if 1 then failed to open,
|
|
|
|
* if 2 failed to close, if 3 failed when writing.
|
|
|
|
*/
|
2017-02-02 19:53:29 +01:00
|
|
|
int exportPrimes(char *efile, char *dfile, int base);
|