GRASS Programmer's Manual  6.4.2(2012)
V_line.c
Go to the documentation of this file.
00001 
00028 #include <grass/vask.h>
00029 
00030 
00050 int V_line(int linenumber, const char *text)
00051 {
00052     if (linenumber >= MAX_LINE || linenumber < 0) {
00053         V_error("Linenumber out of bounds in call to V_line");
00054         return (-1);
00055     }
00056     V__.page.line[linenumber] = text;
00057 
00058     return 0;
00059 }
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines