Skip to content

Commit 0cb32ff

Browse files
committed
Make read_real_value available
1 parent 161fe25 commit 0cb32ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ngc_expr.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ other readers, depending upon the first character.
716716
\param value pointer to float where result is to be stored.
717717
\returns #Status_OK enum value if processed without error, appropriate \ref status_code_t enum value if not.
718718
*/
719-
static status_code_t read_real_value (char *line, uint_fast8_t *pos, float *value)
719+
status_code_t read_real_value (char *line, uint_fast8_t *pos, float *value)
720720
{
721721
char c = line[*pos], c1;
722722

ngc_expr.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
#define _NGC_EXPR_H_
55

66
status_code_t ngc_eval_expression (char *line, uint_fast8_t *pos, float *value);
7-
7+
status_code_t read_real_value (char *line, uint_fast8_t *pos, float *value);
88
#endif

0 commit comments

Comments
 (0)