-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d2792f2
commit 6867c50
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// Created by tobin on 3/18/2024. | ||
// | ||
|
||
#ifndef FSTR_FSTR_H | ||
|
||
#include "fstr.h" | ||
|
||
#endif //FSTR_FSTR_H | ||
|
||
#ifndef FSTR_FSTR_PARSE_H | ||
#define FSTR_FSTR_PARSE_H | ||
|
||
fstr_result fstr_to_i64(const fstr* str); | ||
fstr_result fstr_to_double(fstr* str); | ||
fstr_result fstr_u64_from_bin(fstr* str); | ||
|
||
#endif //FSTR_FSTR_PARSE_H |