source: soft/giet_vm/libs/string.h @ 241

Last change on this file since 241 was 241, checked in by joannou, 11 years ago
  • new application : Dhrystone
  • added new files string.c and string.h in libs to implement strcpy() and strcmp() needed by dhrystone
  • new xml mapping with 4 procs in one cluster, each one running dhrystone
File size: 662 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 );
13
14#endif
15
16// Local Variables:
17// tab-width: 4
18// c-basic-offset: 4
19// c-file-offsets:((innamespace . 0)(inline-open . 0))
20// indent-tabs-mode: nil
21// End:
22// vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
Note: See TracBrowser for help on using the repository browser.