mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef STRNDUP_H
 | |
| #define STRNDUP_H
 | |
| #if __WIN32__
 | |
| static char *strndup (const char *s, size_t n)
 | |
| {
 | |
| 	char *cpy;
 | |
| 	size_t len = strlen(s);
 | |
| 	if (n < len)
 | |
| 		len = n;
 | |
| 	if ((cpy = malloc(len + 1)) !=
 | |
| 	    NULL) {
 | |
| 		cpy[len] =
 | |
| 				'\0';
 | |
| 		memcpy(cpy,
 | |
| 		       s,
 | |
| 		       len);
 | |
| 	}
 | |
| 	return cpy;
 | |
| }
 | |
| #endif
 | |
| #endif /* STRNDUP_H */
 |