misplaced parenthesis in LEN macro
This commit is contained in:
		
							parent
							
								
									3269bf213d
								
							
						
					
					
						commit
						6b56cbf9cc
					
				
							
								
								
									
										2
									
								
								st.c
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								st.c
									
									
									
									
									
								
							| @ -67,7 +67,7 @@ char *argv0; | |||||||
| /* macros */ | /* macros */ | ||||||
| #define MIN(a, b)  ((a) < (b) ? (a) : (b)) | #define MIN(a, b)  ((a) < (b) ? (a) : (b)) | ||||||
| #define MAX(a, b)  ((a) < (b) ? (b) : (a)) | #define MAX(a, b)  ((a) < (b) ? (b) : (a)) | ||||||
| #define LEN(a)     (sizeof(a) / sizeof(a[0])) | #define LEN(a)     (sizeof(a) / sizeof(a)[0]) | ||||||
| #define DEFAULT(a, b)     (a) = (a) ? (a) : (b) | #define DEFAULT(a, b)     (a) = (a) ? (a) : (b) | ||||||
| #define BETWEEN(x, a, b)  ((a) <= (x) && (x) <= (b)) | #define BETWEEN(x, a, b)  ((a) <= (x) && (x) <= (b)) | ||||||
| #define LIMIT(x, a, b)    (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x) | #define LIMIT(x, a, b)    (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x) | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 noname@inventati.org
						noname@inventati.org