File: range.cc

package info (click to toggle)
tome 2.4~0.git.2015.12.29-1.1
  • links: PTS, VCS
  • area: non-free
  • in suites: stretch
  • size: 13,712 kB
  • ctags: 10,771
  • sloc: cpp: 134,109; ansic: 7,229; sh: 283; makefile: 70
file content (11 lines) | stat: -rw-r--r-- 164 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#include "range.hpp"

#include <cassert>

void range_init(range_type *range, s32b min, s32b max)
{
	assert(range != NULL);

	range->min = min;
	range->max = max;
}