hos/kernel/lang/string.h
josh be17cde305 added devices and lang directories, added skeleton kio and string modules
git-svn-id: svn://anubis/hos/trunk@43 5b3e749e-e535-0410-8002-a9bb6afbdfca
2009-07-13 15:34:39 +00:00

16 lines
171 B
C

#ifndef STRING_H
#define STRING_H
#ifdef __cplusplus
extern "C" {
#endif
void strcpy(char * dst, const char * src);
#ifdef __cplusplus
}
#endif
#endif