9511_project03

Command line program that parses a bank .csv file and generates and output file in format .csv or .xml containing the debits and credits of every user.
Index Commits Files Refs README LICENSE
commit 634904e117e0638ac7edb053773b5327ac4416f2
parent 3b2106a35731486e4f5fb3cea45f4bc1962e02ee
Author: klewer-martin <martin.cachari@gmail.com>
Date:   Thu, 15 Jul 2021 23:29:05 -0300

Update: ...

Diffstat:
Msource/main.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/source/main.c b/source/main.c
@@ -7,6 +7,10 @@
 
 #define SORTING_ORDER    "a"
 
+status_t create_array(int *arr, size_t len);
+status_t load_values(int **arr, size_t len);
+status_t destroy_array(int *arr, size_t len);
+
 int main (int argc, char *argv[])
 {
     status_t st;