mirror of
				https://github.com/eledio-devices/thirdparty-tinyexpr.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	Added support for underscore in variable names.
This commit is contained in:
		
							
								
								
									
										4
									
								
								test.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								test.c
									
									
									
									
									
								
							| @@ -237,7 +237,7 @@ void test_nans() { | |||||||
| void test_variables() { | void test_variables() { | ||||||
|  |  | ||||||
|     double x, y, test; |     double x, y, test; | ||||||
|     te_variable lookup[] = {{"x", &x}, {"y", &y}, {"test", &test}}; |     te_variable lookup[] = {{"x", &x}, {"y", &y}, {"te_st", &test}}; | ||||||
|  |  | ||||||
|     int err; |     int err; | ||||||
|  |  | ||||||
| @@ -253,7 +253,7 @@ void test_variables() { | |||||||
|     lok(expr3); |     lok(expr3); | ||||||
|     lok(!err); |     lok(!err); | ||||||
|  |  | ||||||
|     te_expr *expr4 = te_compile("test+5", lookup, 3, &err); |     te_expr *expr4 = te_compile("te_st+5", lookup, 3, &err); | ||||||
|     lok(expr4); |     lok(expr4); | ||||||
|     lok(!err); |     lok(!err); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -207,7 +207,7 @@ void next_token(state *s) { | |||||||
|             if (s->next[0] >= 'a' && s->next[0] <= 'z') { |             if (s->next[0] >= 'a' && s->next[0] <= 'z') { | ||||||
|                 const char *start; |                 const char *start; | ||||||
|                 start = s->next; |                 start = s->next; | ||||||
|                 while ((s->next[0] >= 'a' && s->next[0] <= 'z') || (s->next[0] >= '0' && s->next[0] <= '9')) s->next++; |                 while ((s->next[0] >= 'a' && s->next[0] <= 'z') || (s->next[0] >= '0' && s->next[0] <= '9') || (s->next[0] == '_')) s->next++; | ||||||
|  |  | ||||||
|                 const te_variable *var = find_lookup(s, start, s->next - start); |                 const te_variable *var = find_lookup(s, start, s->next - start); | ||||||
|                 if (!var) var = find_builtin(start, s->next - start); |                 if (!var) var = find_builtin(start, s->next - start); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user