Properly implement size_t

This commit is contained in:
wundrweapon 2020-08-09 12:49:16 -04:00
parent 76c66cdfc5
commit 87c5daf619
2 changed files with 4 additions and 4 deletions

6
hb.c
View file

@ -8,7 +8,7 @@
#include "st.h"
void hbtransformsegment(XftFont *xfont, const Glyph *string, hb_codepoint_t *codepoints, int start, int length, char **userfeats, int numuserfeats);
void hbtransformsegment(XftFont *xfont, const Glyph *string, hb_codepoint_t *codepoints, int start, int length, char **userfeats, size_t numuserfeats);
hb_font_t *hbfindfont(XftFont *match);
typedef struct {
@ -57,7 +57,7 @@ hbfindfont(XftFont *match)
}
void
hbtransform(XftGlyphFontSpec *specs, const Glyph *glyphs, size_t len, int x, int y, char **userfeats, int numuserfeats)
hbtransform(XftGlyphFontSpec *specs, const Glyph *glyphs, size_t len, int x, int y, char **userfeats, size_t numuserfeats)
{
int start = 0, length = 1, gstart = 0;
hb_codepoint_t *codepoints = calloc(len, sizeof(hb_codepoint_t));
@ -104,7 +104,7 @@ hbtransform(XftGlyphFontSpec *specs, const Glyph *glyphs, size_t len, int x, int
}
void
hbtransformsegment(XftFont *xfont, const Glyph *string, hb_codepoint_t *codepoints, int start, int length, char **userfeats, int numuserfeats)
hbtransformsegment(XftFont *xfont, const Glyph *string, hb_codepoint_t *codepoints, int start, int length, char **userfeats, size_t numuserfeats)
{
hb_font_t *font = hbfindfont(xfont);
if (font == NULL)

2
hb.h
View file

@ -3,4 +3,4 @@
#include <hb-ft.h>
void hbunloadfonts();
void hbtransform(XftGlyphFontSpec *, const Glyph *, size_t, int, int, char **, int);
void hbtransform(XftGlyphFontSpec *, const Glyph *, size_t, int, int, char **, size_t);