/* $Id$ */ /* Copyright (c) 2018 Pierre Pronchery */ /* This file is part of DeforaOS uKernel */ #ifndef UKERNEL_STRING_H # define UKERNEL_STRING_H # include /* prototypes */ void * memcpy(void * dest, void const * src, size_t n); void * memmove(void * dest, void const * src, size_t n); #endif /* !UKERNEL_STRING_H */