diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-09-05 15:50:23 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-09-05 15:50:23 +0200 |
| commit | 3faac14d62c2fb05e7ee9e207f29033897d4ae77 (patch) | |
| tree | cdaf82f5d57e6d6bdaa997f21c37a923d88910ec /core/math/big/common.odin | |
| parent | b2fa4ec675afb6be7bee53fdd390c54a8511f161 (diff) | |
big: Add ASCII file import/export.
Diffstat (limited to 'core/math/big/common.odin')
| -rw-r--r-- | core/math/big/common.odin | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/math/big/common.odin b/core/math/big/common.odin index fb215cd69..11810d144 100644 --- a/core/math/big/common.odin +++ b/core/math/big/common.odin @@ -166,6 +166,10 @@ Error :: enum int { Division_by_Zero = 8, Math_Domain_Error = 9, + Cannot_Open_File = 50, + Cannot_Read_File = 51, + Cannot_Write_File = 52, + Unimplemented = 127, }; |