#include <stddef.h>
#include <limits.h>
 
Go to the source code of this file.
 | 
| unsigned long  | strtoul (const char *nptr, char **endptr, int base) | 
|   | 
| long  | strtol (const char *nptr, char **endptr, int base) | 
|   | 
| unsigned long long  | strtoull (const char *nptr, char **endptr, int base) | 
|   | 
| long long  | strtoll (const char *nptr, char **endptr, int base) | 
|   | 
| int  | atoi (const char *s) | 
|   | 
| void *  | malloc (size_t size) | 
|   | 
| void *  | aligned_alloc (size_t alignment, size_t size) | 
|   | 
| void  | free (void *ptr) | 
|   | 
| void *  | calloc (size_t nmemb, size_t size) | 
|   | 
| void *  | realloc (void *ptr, size_t size) | 
|   | 
| void *  | reallocarray (void *ptr, size_t nmemb, size_t size) | 
|   | 
| void *  | bsearch (const void *key, const void *array, size_t count, size_t size, int(*cmp)(const void *key, const void *element)) | 
|   | 
| void  | qsort_r (void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *, void *), void *arg) | 
|   | 
| void  | qsort (void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *)) | 
|   | 
| static void  | exit (int status) | 
|   | 
| void  | abort (void) | 
|   | 
| static int  | abs (int __n) | 
|   | 
| static long  | labs (long __n) | 
|   | 
| static long long  | llabs (long long __n) | 
|   | 
◆ EXIT_FAILURE
◆ EXIT_SUCCESS
◆ abort()
◆ abs()
  
  
      
        
          | static int abs  | 
          ( | 
          int  | 
          __n | ) | 
           | 
         
       
   | 
  
inlinestatic   | 
  
 
 
◆ aligned_alloc()
      
        
          | void * aligned_alloc  | 
          ( | 
          size_t  | 
          alignment,  | 
        
        
           | 
           | 
          size_t  | 
          size  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
◆ atoi()
      
        
          | int atoi  | 
          ( | 
          const char *  | 
          s | ) | 
           | 
        
      
 
 
◆ bsearch()
      
        
          | void * bsearch  | 
          ( | 
          const void *  | 
          key,  | 
        
        
           | 
           | 
          const void *  | 
          array,  | 
        
        
           | 
           | 
          size_t  | 
          count,  | 
        
        
           | 
           | 
          size_t  | 
          size,  | 
        
        
           | 
           | 
          int(*)(const void *key, const void *element)  | 
          cmp  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
◆ calloc()
      
        
          | void * calloc  | 
          ( | 
          size_t  | 
          nmemb,  | 
        
        
           | 
           | 
          size_t  | 
          size  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
◆ exit()
  
  
      
        
          | static void exit  | 
          ( | 
          int  | 
          status | ) | 
           | 
         
       
   | 
  
inlinestatic   | 
  
 
 
◆ free()
◆ labs()
  
  
      
        
          | static long labs  | 
          ( | 
          long  | 
          __n | ) | 
           | 
         
       
   | 
  
inlinestatic   | 
  
 
 
◆ llabs()
  
  
      
        
          | static long long llabs  | 
          ( | 
          long long  | 
          __n | ) | 
           | 
         
       
   | 
  
inlinestatic   | 
  
 
 
◆ malloc()
      
        
          | void * malloc  | 
          ( | 
          size_t  | 
          size | ) | 
           | 
        
      
 
 
◆ qsort()
      
        
          | void qsort  | 
          ( | 
          void *  | 
          base,  | 
        
        
           | 
           | 
          size_t  | 
          nmemb,  | 
        
        
           | 
           | 
          size_t  | 
          size,  | 
        
        
           | 
           | 
          int(*)(const void *, const void *)  | 
          compar  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
◆ qsort_r()
      
        
          | void qsort_r  | 
          ( | 
          void *  | 
          base,  | 
        
        
           | 
           | 
          size_t  | 
          nmemb,  | 
        
        
           | 
           | 
          size_t  | 
          size,  | 
        
        
           | 
           | 
          int(*)(const void *, const void *, void *)  | 
          compar,  | 
        
        
           | 
           | 
          void *  | 
          arg  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
◆ realloc()
      
        
          | void * realloc  | 
          ( | 
          void *  | 
          ptr,  | 
        
        
           | 
           | 
          size_t  | 
          size  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
◆ reallocarray()
      
        
          | void * reallocarray  | 
          ( | 
          void *  | 
          ptr,  | 
        
        
           | 
           | 
          size_t  | 
          nmemb,  | 
        
        
           | 
           | 
          size_t  | 
          size  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
◆ strtol()
      
        
          | long strtol  | 
          ( | 
          const char *  | 
          nptr,  | 
        
        
           | 
           | 
          char **  | 
          endptr,  | 
        
        
           | 
           | 
          int  | 
          base  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
◆ strtoll()
      
        
          | long long strtoll  | 
          ( | 
          const char *  | 
          nptr,  | 
        
        
           | 
           | 
          char **  | 
          endptr,  | 
        
        
           | 
           | 
          int  | 
          base  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
◆ strtoul()
      
        
          | unsigned long strtoul  | 
          ( | 
          const char *  | 
          nptr,  | 
        
        
           | 
           | 
          char **  | 
          endptr,  | 
        
        
           | 
           | 
          int  | 
          base  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
◆ strtoull()
      
        
          | unsigned long long strtoull  | 
          ( | 
          const char *  | 
          nptr,  | 
        
        
           | 
           | 
          char **  | 
          endptr,  | 
        
        
           | 
           | 
          int  | 
          base  | 
        
        
           | 
          ) | 
           |  |