aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/pos.h
blob: 7cfb52b283334995407658d263a46002e258d5de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef NVIM_POS_H
#define NVIM_POS_H

typedef long linenr_T;         // line number type
typedef int colnr_T;           // column number type

#define MAXLNUM (0x7fffffffL)  // maximum (invalid) line number
#define MAXCOL  (0x7fffffffL)  // maximum column number, 31 bits

/*
 * position in file or buffer
 */
typedef struct {
  linenr_T lnum;        /* line number */
  colnr_T col;          /* column number */
  colnr_T coladd;
} pos_T;

# define INIT_POS_T(l, c, ca) {l, c, ca}

/*
 * Same, but without coladd.
 */
typedef struct {
  linenr_T lnum;        /* line number */
  colnr_T col;          /* column number */
} lpos_T;

#endif  // NVIM_POS_H