From 6f9fa656730b61384908e8ddbd11825eae3a92b9 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Thu, 18 Jul 2019 19:45:29 -0400 Subject: Don't use libpng's pointer typedefs Pointers should be as obvious as possible. --- (limited to 'src/font.h') diff --git a/src/font.h b/src/font.h index 4cd7da1..5461459 100644 --- a/src/font.h +++ b/src/font.h @@ -45,6 +45,6 @@ font_get_height(const struct font *font) __attribute__((pure)); void font_render(const struct font *font, png_const_colorp fg, png_const_colorp bg, - unsigned char ch, png_bytepp rows, int row, int col); + unsigned char ch, png_byte **rows, int row, int col); #endif /* FONT_H_ */ -- cgit v0.9.1