X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/6f9272bdabcda81425ec1aaecf26a160535d4749..120e281bec04808412eafacf684febb679374ba3:/include/minilib.h diff --git a/include/minilib.h b/include/minilib.h index 7d66efb..2e7eca6 100644 --- a/include/minilib.h +++ b/include/minilib.h @@ -1,3 +1,13 @@ +/* minilib.h + * Definitions for a very small libc + * NetWatch system management mode administration console + * + * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. + * This program is free software; you can redistribute and/or modify it under + * the terms found in the file LICENSE in the root of this source tree. + * + */ + #ifndef MINILIB_H #define MINILIB_H @@ -10,6 +20,7 @@ extern int memcmp(const char *a2, const char *a1, int bytes); extern int strcmp(const char *a2, const char *a1); extern int strncmp(const char *a2, const char *a1, int n); extern int strlen(const char *c); +extern void strcat(char *dest, char *src); extern void strcpy(char *a2, const char *a1); extern void puts(const char *c); extern void tohex(char *s, unsigned long l);