X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=compat%2Fstrtoll.c;h=5ad79c43688219774c5e48a4c0015653938e9367;hb=740edcdc37daa92b035cd6909005afe22133b911;hp=8d2e0bcb8a731a70cc49fd5c8bdc8ed57f62d6a6;hpb=d3c449f26a72761b20dc8cb8334fdd5622acd1f2;p=vlc diff --git a/compat/strtoll.c b/compat/strtoll.c index 8d2e0bcb8a..5ad79c4368 100644 --- a/compat/strtoll.c +++ b/compat/strtoll.c @@ -1,21 +1,21 @@ /***************************************************************************** * strtoll.c: C strtoll() replacement ***************************************************************************** - * Copyright © 1998-2008 the VideoLAN project + * Copyright © 1998-2010 VLC authors and VideoLAN * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #ifdef HAVE_CONFIG_H @@ -25,7 +25,7 @@ #include #include -long long int strtof( const char *nptr, char **endptr, int base ) +long long int strtoll( const char *nptr, char **endptr, int base ) { long long i_value = 0; int sign = 1, newbase = base ? base : 10;