~ubuntu-branches/ubuntu/raring/geotranz/raring

« back to all changes in this revision

Viewing changes to geotrans2/src/strndup.h

  • Committer: Bazaar Package Importer
  • Author(s): Roberto Lumbreras
  • Date: 2008-10-17 14:43:09 UTC
  • Revision ID: james.westby@ubuntu.com-20081017144309-jb7uzfi1y1lvez8j
Tags: upstream-2.4.2
ImportĀ upstreamĀ versionĀ 2.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __strndup_h__
 
2
#define __strndup_h__
 
3
 
 
4
#ifdef __cplusplus
 
5
 
 
6
char *strndup_(const char *src, long len);
 
7
char *strdup_(const char *src);
 
8
 
 
9
/* defined C++ symbols, C symbols to follow */
 
10
 
 
11
#else
 
12
 
 
13
char *strndup_(const char *src, long len);
 
14
char *strdup_(const char *src);
 
15
 
 
16
#endif
 
17
      
 
18
#endif