58 lines
2.2 KiB
C
58 lines
2.2 KiB
C
/*
|
|
* Copyright (C) 2017 Ortega Froysa, Nicolás <deathsbreed@themusicinnoise.net>
|
|
* Author: Ortega Froysa, Nicolás <deathsbreed@themusicinnoise.net>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* @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,
|
|
* if 2 failed to close, if 3 failed to allocate new memory to List
|
|
* (see `addToList()')
|
|
*/
|
|
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.
|
|
* @param startPos The position in the List of primes at which to append
|
|
* to the file.
|
|
* @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, size_t startPos);
|
|
|
|
/**
|
|
* @brief Export primes from a List to a plain text file.
|
|
* @param efile File to export primes as plain text to.
|
|
* @param dfile File to read primes from.
|
|
* @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.
|
|
*/
|
|
int exportPrimes(char *efile, char *dfile, int base);
|