You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some functions in Signaletic can fail for various reasons—user error such as an out-of-bounds index, resource limitations such as a lack of memory, etc. We should implement a means for informing callers when an error occurred.
There are several different strategies used in C, but my preference is for an error or result status object being specified by the caller as the last argument in to a function that can fail.
The text was updated successfully, but these errors were encountered:
Some functions in Signaletic can fail for various reasons—user error such as an out-of-bounds index, resource limitations such as a lack of memory, etc. We should implement a means for informing callers when an error occurred.
There are several different strategies used in C, but my preference is for an error or result status object being specified by the caller as the last argument in to a function that can fail.
The text was updated successfully, but these errors were encountered: