Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech> Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/10
10 lines
179 B
C
10 lines
179 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <hb.h>
|
|
|
|
int main() {
|
|
const char *version = hb_version_string();
|
|
printf("harfbuzz version: %s\n", version);
|
|
return 0;
|
|
}
|