GRASS Programmer's Manual  6.5.svn(2014)-r66266
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
V_line.c
Go to the documentation of this file.
1 
28 #include <grass/vask.h>
29 
30 
50 int V_line(int linenumber, const char *text)
51 {
52  if (linenumber >= MAX_LINE || linenumber < 0) {
53  V_error("Linenumber out of bounds in call to V_line");
54  return (-1);
55  }
56  V__.page.line[linenumber] = text;
57 
58  return 0;
59 }
struct V__ V__
Definition: V_call.c:90
int V_line(int linenumber, const char *text)
Definition: V_line.c:50
void V_error(const char *fmt,...)
Definition: V_error.c:44