Traitement-signal-plantes/Code-C/include/fileGestion.h

8 lines
165 B
C
Raw Normal View History

2022-06-01 12:32:04 +02:00
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
2022-06-10 10:10:28 +02:00
2022-06-02 14:29:21 +02:00
void clearRawData(int N);
2022-06-14 18:01:52 +02:00
void appendDataInFile(char* fileName , double a[], int N);