diff options
author | Mattias Andrée <maandree@kth.se> | 2023-01-08 21:40:02 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-01-08 21:40:02 +0100 |
commit | 17a93f72f3343e6839f625972ba743ec61441c49 (patch) | |
tree | 7fc53e253e9e2aefad0f9a8d10edff0524198c75 /libfonts_gethome__.c | |
parent | Fix error handling (diff) | |
download | libfonts-17a93f72f3343e6839f625972ba743ec61441c49.tar.gz libfonts-17a93f72f3343e6839f625972ba743ec61441c49.tar.bz2 libfonts-17a93f72f3343e6839f625972ba743ec61441c49.tar.xz |
Partially implement libfonts_get_default_font, libfonts_get_{default,output}_rendering_settings
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | libfonts_gethome__.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libfonts_gethome__.c b/libfonts_gethome__.c index 902029f..f05dbfb 100644 --- a/libfonts_gethome__.c +++ b/libfonts_gethome__.c @@ -1,5 +1,6 @@ /* See LICENSE file for copyright and license details. */ #include "common.h" +#ifndef TEST char * @@ -38,3 +39,16 @@ libfonts_gethome__(struct libfonts_context *ctx) free(buf); return ret; } + + +#else + + +int +main(void) +{ + return 0; /* TODO add test */ +} + + +#endif |