LCOV - code coverage report
Current view: top level - libpkg - xmalloc.h (source / functions) Hit Total Coverage
Test: plop Lines: 26 32 81.2 %
Date: 2024-12-30 07:09:03 Functions: 6 6 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 9 12 75.0 %

           Branch data     Line data    Source code
       1                 :            : #ifndef XMALLOC_H
       2                 :            : #define XMALLOC_H
       3                 :            : 
       4                 :            : #include <stdarg.h>
       5                 :            : #include <stdio.h>
       6                 :            : #include <stdlib.h>
       7                 :            : #include <string.h>
       8                 :            : 
       9                 :       8468 : static inline void *xmalloc(size_t size)
      10                 :            : {
      11                 :       8468 :         void *ptr = malloc(size);
      12         [ +  + ]:       8468 :         if (ptr == NULL)
      13                 :          0 :                 abort();
      14                 :       8468 :         return (ptr);
      15                 :            : }
      16                 :            : 
      17                 :      28796 : static inline void *xcalloc(size_t n, size_t size)
      18                 :            : {
      19                 :      28796 :         void *ptr = calloc(n, size);
      20         [ +  + ]:      28796 :         if (ptr == NULL)
      21                 :          0 :                 abort();
      22                 :      28796 :         return (ptr);
      23                 :            : }
      24                 :            : 
      25                 :         32 : static inline void *xrealloc(void *ptr, size_t size)
      26                 :            : {
      27                 :         32 :         ptr = realloc(ptr, size);
      28         [ +  - ]:         32 :         if (ptr == NULL)
      29                 :          0 :                 abort();
      30                 :         32 :         return (ptr);
      31                 :            : }
      32                 :            : 
      33                 :     104271 : static inline char *xstrdup(const char *str)
      34                 :            : {
      35                 :     104271 :         char *s = strdup(str);
      36         [ +  + ]:     104271 :         if (s == NULL)
      37                 :          0 :                 abort();
      38                 :     104271 :         return (s);
      39                 :            : }
      40                 :            : 
      41                 :         14 : static inline char *xstrndup(const char *str, size_t n)
      42                 :            : {
      43                 :         14 :         char *s = strndup(str, n);
      44         [ +  - ]:         14 :         if (s == NULL)
      45                 :          0 :                 abort();
      46                 :         14 :         return (s);
      47                 :            : }
      48                 :            : 
      49                 :      48514 : static inline int xasprintf(char **ret, const char *fmt, ...)
      50                 :            : {
      51                 :            :         va_list ap;
      52                 :            :         int i;
      53                 :            : 
      54                 :      48514 :         va_start(ap, fmt);
      55                 :      48514 :         i = vasprintf(ret, fmt, ap);
      56                 :      48514 :         va_end(ap);
      57                 :            : 
      58         [ +  - ]:      48514 :         if (i < 0 || *ret == NULL)
      59                 :          0 :                 abort();
      60                 :            : 
      61                 :      48514 :         return (i);
      62                 :            : }
      63                 :            : #endif

Generated by: LCOV version 1.15