Subversion Repositories Kolibri OS

Rev

Rev 1238 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1238 vkos 1
/***************************************************************************************************
2
 *  Copyright (C) Vasiliy Kosenko (vkos), 2009                                                     *
3
 *  Kobra is free software: you can redistribute it and/or modify it under the terms of the GNU    *
4
 *  General Public License as published by the Free Software Foundation, either version 3          *
5
 *  of the License, or (at your option) any later version.                                         *
6
 *                                                                                                 *
7
 *  Kobra is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without     *
8
 *  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU  *
9
 *  General Public License for more details.                                                       *
10
 *                                                                                                 *
11
 *  You should have received a copy of the GNU General Public License along with Kobra.            *
12
 *  If not, see .                                                    *
13
 ***************************************************************************************************/
14
 
15
#ifndef _MEMCPY_H_
16
#define _MEMCPY_H_
17
 
18
void *memcpy(void *dst, void *src, int length);
19
 
20
char strcmp(char *s1, char *s2);
21
int strlen(char *s);
22
char *strcpy(char *dest, char *src);
23
 
24
#endif