]> git.sesse.net Git - vlc/blob - src/misc/extras.c
* configure.ac.in, modules/audio_filter/converter/*: added a s8tofloat32.c and
[vlc] / src / misc / extras.c
1 /*****************************************************************************
2  * extras.c: Extra libc functions for some systems.
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: extras.c,v 1.2 2002/11/06 09:26:25 sam Exp $
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23 #include <string.h>                                              /* strdup() */
24 #include <stdlib.h>
25
26 #include <vlc/vlc.h>
27
28 #ifndef HAVE_STRNDUP
29 /*****************************************************************************
30  * strndup: returns a malloc'd copy of at most n bytes of string 
31  * Does anyone know whether or not it will be present in Jaguar?
32  *****************************************************************************/
33 char *strndup( const char *string, size_t n )
34 {
35     char *psz;
36     size_t len = strlen( string );
37
38     len = __MIN( len, n ); 
39     psz = (char*)malloc( len + 1 );
40
41     if( psz != NULL )
42     {
43         memcpy( (void*)psz, (const void*)string, len );
44         psz[ len ] = 0;
45     }
46
47     return( psz );
48 }
49 #endif /* HAVE_STRNDUP */