Skip to content

Commit

Permalink
Make read_real_value available
Browse files Browse the repository at this point in the history
  • Loading branch information
skasti committed Oct 9, 2024
1 parent 161fe25 commit 0cb32ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ngc_expr.c
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ other readers, depending upon the first character.
\param value pointer to float where result is to be stored.
\returns #Status_OK enum value if processed without error, appropriate \ref status_code_t enum value if not.
*/
static status_code_t read_real_value (char *line, uint_fast8_t *pos, float *value)
status_code_t read_real_value (char *line, uint_fast8_t *pos, float *value)
{
char c = line[*pos], c1;

Expand Down
2 changes: 1 addition & 1 deletion ngc_expr.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
#define _NGC_EXPR_H_

status_code_t ngc_eval_expression (char *line, uint_fast8_t *pos, float *value);

status_code_t read_real_value (char *line, uint_fast8_t *pos, float *value);
#endif

0 comments on commit 0cb32ff

Please sign in to comment.