blob: 868549efb115895e7ecf6d7ceb5e86ab2beba012 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
int
libcmap_print_range(const struct libcmap_range *range, const char *endash)
{
return libcmap_fprint_range(stdout, range, endash);
}
|