source: soft/giet_vm/giet_libs/string.h @ 607

Last change on this file since 607 was 607, checked in by guerin, 9 years ago

string: implement strlen()

  • Property svn:executable set to *
File size: 695 bytes
Line 
1//////////////////////////////////////////////////////////////////////////////////
2// File     : string.h
3// Date     : 23/05/2013
4// Author   : Alexandre JOANNOU, Laurent LAMBERT
5// Copyright (c) UPMC-LIP6
6///////////////////////////////////////////////////////////////////////////////////
7
8#ifndef _STRING_H
9#define _STRING_H
10
11char * strcpy ( char * destination, const char * source );
12int strcmp ( const char * str1, const char * str2 );
13int strlen ( const char * str );
14
15#endif
16
17// Local Variables:
18// tab-width: 4
19// c-basic-offset: 4
20// c-file-offsets:((innamespace . 0)(inline-open . 0))
21// indent-tabs-mode: nil
22// End:
23// vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
Note: See TracBrowser for help on using the repository browser.