beginning code to write json file
This commit is contained in:
parent
83a308bb96
commit
011eecc81b
25
Code-C/csv2json.c
Normal file
25
Code-C/csv2json.c
Normal 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)
|
||||
{
|
||||
|
||||
}
|
Loading…
Reference in a new issue