File: set.c

package info (click to toggle)
dvi2ps 3.2j-15
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,380 kB
  • ctags: 1,896
  • sloc: ansic: 12,767; sh: 965; makefile: 270
file content (25 lines) | stat: -rw-r--r-- 325 bytes parent folder | download | duplicates (11)
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
#include	"defs.h"
#include	"commands.h"
#include	"dconv.h"
#include	"global.h"
#include	"set.h"

void
MarkChar(c)
int c;
{
    FNT_markchar(c);
}

void
MarkString(firstch)
int firstch;
{
    int c;

    for (c = firstch; c >= SETC_000 && c <= SETC_127; ) {
	FNT_markchar(c);
	c = DC_getcommand();
    }
    DC_backupone();
}