blob: 585bf78e4f71195f15f85bb9ed9cba3cfdbc0e7e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include "tcs.h"
# TCS_TXTINFO -- Get text information about a column
procedure tcs_txtinfo (descrip, what, str, maxch)
pointer descrip # i: column selector
int what # i: parameter
char str[ARB] # o: text information
int maxch # i: length of string
#--
begin
call tbcigt (TCS_COLUMN(descrip), what, str, maxch)
end
|