beginning code to write json file

This commit is contained in:
quentin.perret 2022-09-06 17:33:54 +02:00
parent 83a308bb96
commit 011eecc81b

25
Code-C/csv2json.c Normal file
View file

@ -0,0 +1,25 @@
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
void writeCaptorNumber(int N)
{
fprintf(stdout ,"{\n\"captorNumber\" : %d , " , N);
}
void writeTimeArray()
{
while
}
void writeValuesArray(int N)
{
}
int main(int argc, char **argv)
{
}