File: set.c

package info (click to toggle)
dvi2ps 3.0a1-4
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,392 kB
  • ctags: 1,750
  • sloc: ansic: 11,699; sh: 277; makefile: 235
file content (25 lines) | stat: -rw-r--r-- 334 bytes parent folder | download | duplicates (2)
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;
{
    register int c;

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