#include "utils.h" size_t ft_strncpy(char *dst, const char *src, size_t n) { size_t i; i = 0; while (i < n) { dst[i] = src[i]; i++; } return (i); }