File: allcaps.gdl

package info (click to toggle)
grcompiler 5.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 24,020 kB
  • sloc: cpp: 48,200; ansic: 7,670; sh: 4,427; makefile: 197; xml: 190; perl: 127; sed: 21
file content (25 lines) | stat: -rw-r--r-- 512 bytes parent folder | download | duplicates (5)
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

/*********************************************************************************
	File: allcaps.gdl

	Sample GDL file for creating small caps.

	Compile with Std SILDoulos (stddr.ttf).
*********************************************************************************/

#include "stddef.gdh"

Bidi = false;

table(glyph)

	clsUpperCase = codepoint("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
	clsLowerCase = codepoint("abcdefghijklmnopqrstuvwxyz");

endtable;	// glyph

table(sub)

	clsLowerCase > clsUpperCase;

endtable;