blob: 800fee59b77b02af1f17154bfa8bd81916925144 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* See LICENSE file for copyright and license details. */
#include "libcmap.h"
#include <limits.h>
int
libcmap_sprint_range(char *buf, const struct libcmap_range *range, const char *endash)
{
return libcmap_snprint_range(buf, buf ? SIZE_MAX : (size_t)0, range, endash);
}
|