mirror of
https://github.com/LukeSmithxyz/st.git
synced 2025-04-04 18:41:08 +02:00
Properly implement size_t
This commit is contained in:
parent
76c66cdfc5
commit
87c5daf619
2 changed files with 4 additions and 4 deletions
6
hb.c
6
hb.c
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
#include "st.h"
|
#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);
|
hb_font_t *hbfindfont(XftFont *match);
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@ -57,7 +57,7 @@ hbfindfont(XftFont *match)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
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;
|
int start = 0, length = 1, gstart = 0;
|
||||||
hb_codepoint_t *codepoints = calloc(len, sizeof(hb_codepoint_t));
|
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
|
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);
|
hb_font_t *font = hbfindfont(xfont);
|
||||||
if (font == NULL)
|
if (font == NULL)
|
||||||
|
|
2
hb.h
2
hb.h
|
@ -3,4 +3,4 @@
|
||||||
#include <hb-ft.h>
|
#include <hb-ft.h>
|
||||||
|
|
||||||
void hbunloadfonts();
|
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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue