Statistiques
| Révision :

root / approxBasisSollya / approxbaso.c

Historique | Voir | Annoter | Télécharger (751 octet)

1
/** @file approxbaso.c */
2
/******************************************************************************/
3
/**
4
 * Function approximation basis defined and evaluated in Sollya.
5
 * 
6
 * @author: S.T.
7
 * @date: 2018-03-07
8
 *
9
 */
10

    
11
/* Includes according to the "general to particular" rule. */
12
/* includes of system headers */
13
#include <stdio.h>
14

    
15
/* includes of project headers */
16
#include <pobyso.h>
17

    
18
/* includes of local headers */
19
#include <approxbaso.h>
20
#include <read-lines-from-file.h>
21

    
22
/* Types, constants and macros definitions */
23

    
24
/* Global variables */
25

    
26
/* Functions */
27

    
28
/** @see approxbaso.h#read_basis_from_handle */
29
struct ApproxBasisSollya*
30
abs_read_basis_from_handle(FILE* fileHandle)
31
{
32
  rlff_readLines_t* linesRead = NULL;
33
  return NULL;
34
}