14 lines
233 B
C
14 lines
233 B
C
|
#include <sqlite3.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
// Duplication from simulFlux.c
|
||
|
|
||
|
/**
|
||
|
* @brief convert an interger N into a char*
|
||
|
*
|
||
|
* @param N
|
||
|
* @return char*
|
||
|
*/
|
||
|
char *convertIntegerToChar(int N);
|