File: typemap

package info (click to toggle)
libharfbuzz-shaper-perl 0.031%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: perl: 1,282; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 401 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
TYPEMAP

hb_buffer_t  * T_PTROBJ
hb_blob_t    * T_PTROBJ
hb_face_t    * T_PTROBJ
hb_font_t    * T_PTROBJ
hb_feature_t * T_PTROBJ

# Perl strings autoconverting to (utf8) bytes.
bytestring_t       T_BYTESTRING
bytestring_nolen_t T_BYTESTRING_nolen

INPUT

# With length...
T_BYTESTRING
	$var = SvPVutf8($arg,STRLEN_length_of_$var)

# And without length.
T_BYTESTRING_nolen
	$var = SvPVutf8_nolen($arg)