This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.

9 lines
141 B
C
Raw Normal View History

2017-03-18 23:04:38 +10:00
#ifndef SHARED_MYSTRNCPY_H
#define SHARED_MYSTRNCPY_H
#include "shared/types.h"
void mystrncpy(char *dest,char *src,uint32_t len);
#endif