You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
306 B
10 lines
306 B
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "_file_information.h"
|
|
|
|
float getAvailableAccountBalance(int user_id);
|
|
float fetchBalanceFromBalanceString(char balance_String[MAX_LENGTH]);
|
|
float readFileAndGetAvailableBalance(FILE *file, char stringID[MAX_LENGTH]);
|