strtoull.c 1.0 KB

123456789101112131415161718192021222324252627
  1. /* Function to parse an `unsigned long long int' from text.
  2. Copyright (C) 1995-1997, 1999, 2009-2011 Free Software Foundation, Inc.
  3. NOTE: The canonical source of this file is maintained with the GNU C
  4. Library. Bugs can be reported to bug-glibc@gnu.org.
  5. This program is free software: you can redistribute it and/or modify it
  6. under the terms of the GNU General Public License as published by the
  7. Free Software Foundation; either version 3 of the License, or any
  8. later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  15. #define QUAD 1
  16. #include "strtoul.c"
  17. #ifdef _LIBC
  18. strong_alias (__strtoull_internal, __strtouq_internal)
  19. weak_alias (strtoull, strtouq)
  20. #endif