Changeset 645 for libcaca/trunk/cucul/cucul_internals.h
- Timestamp:
- Mar 18, 2006, 1:12:25 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/cucul/cucul_internals.h
r643 r645 53 53 extern int _cucul_init_bitmap(void); 54 54 extern int _cucul_end_bitmap(void); 55 void _cucul_set_size(cucul_t *qq, unsigned int width, unsigned int height);55 extern void _cucul_set_size(cucul_t *, unsigned int, unsigned int); 56 56 57 57 /* Charset functions */ 58 unsigned int _cucul_strlen_utf8(char const *s);59 char const *_cucul_skip_utf8(char const *s, unsigned int x);60 uint32_t _cucul_utf8_to_utf32(char const *s);61 uint8_t _cucul_utf32_to_cp437(uint32_t c);62 uint32_t _cucul_cp437_to_utf32(uint8_t c);58 extern unsigned int _cucul_strlen_utf8(char const *); 59 extern char const *_cucul_skip_utf8(char const *, unsigned int); 60 extern uint32_t _cucul_utf8_to_utf32(char const *); 61 extern uint8_t _cucul_utf32_to_cp437(uint32_t); 62 extern uint32_t _cucul_cp437_to_utf32(uint8_t); 63 63 64 64 /* Export functions */ 65 void _cucul_get_ansi(cucul_t *qq, struct cucul_buffer *ex);66 void _cucul_get_html(cucul_t *qq, struct cucul_buffer *ex);67 void _cucul_get_html3(cucul_t *qq, struct cucul_buffer *ex);68 void _cucul_get_irc(cucul_t *qq, struct cucul_buffer *ex);69 void _cucul_get_ps(cucul_t *qq, struct cucul_buffer *ex);70 void _cucul_get_svg(cucul_t *qq, struct cucul_buffer *ex);65 extern void _cucul_get_ansi(cucul_t *, struct cucul_export *); 66 extern void _cucul_get_html(cucul_t *, struct cucul_export *); 67 extern void _cucul_get_html3(cucul_t *, struct cucul_export *); 68 extern void _cucul_get_irc(cucul_t *, struct cucul_export *); 69 extern void _cucul_get_ps(cucul_t *, struct cucul_export *); 70 extern void _cucul_get_svg(cucul_t *, struct cucul_export *); 71 71 72 72 #endif /* __CUCUL_INTERNALS_H__ */
Note: See TracChangeset
for help on using the changeset viewer.