$darkmode
Herb C Reference
range.h
Go to the documentation of this file.
1 #ifndef HERB_RANGE_H
2 #define HERB_RANGE_H
3 
4 #include <stdint.h>
5 #include <stdlib.h>
6 
7 typedef struct RANGE_STRUCT {
8  uint32_t from;
9  uint32_t to;
11 
12 uint32_t range_length(range_T range);
13 
14 #endif
struct RANGE_STRUCT range_T
uint32_t range_length(range_T range)
Definition: range.c:3
Definition: range.h:7
uint32_t to
Definition: range.h:9
uint32_t from
Definition: range.h:8