mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 16:48:26 +02:00 
			
		
		
		
	 fbaf242c95
			
		
	
	
		fbaf242c95
		
	
	
	
	
		
			
			Move array_size.h, hashtable.h, list.h, list_types.h from scripts/kconfig/ to scripts/include/. These headers will be useful for other host programs. Remove scripts/mod/list.h. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			258 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			258 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| #ifndef ARRAY_SIZE_H
 | |
| #define ARRAY_SIZE_H
 | |
| 
 | |
| /**
 | |
|  * ARRAY_SIZE - get the number of elements in array @arr
 | |
|  * @arr: array to be sized
 | |
|  */
 | |
| #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
 | |
| 
 | |
| #endif /* ARRAY_SIZE_H */
 |