You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							15 lines
						
					
					
						
							415 B
						
					
					
				
			
		
		
	
	
							15 lines
						
					
					
						
							415 B
						
					
					
				| #ifndef _STRING_H
 | |
| #define _STRING_H
 | |
| 
 | |
| #include <stddef.h>
 | |
| 
 | |
| void* memcpy(void* dest, const void* src, size_t len);
 | |
| void* memset(void* dest, int byte, size_t len);
 | |
| size_t strlen(const char* s);
 | |
| int strcmp(const char* s1, const char* s2);
 | |
| char* strcpy(char* dest, const char* src);
 | |
| long atol(const char* str);
 | |
| void* memmove(void* dst, const void* src, size_t n);
 | |
| char* safestrcpy(char* s, const char* t, int n);
 | |
| 
 | |
| #endif |