/
dzavalishin
/
Modest
Обзор
Документация
Войти
/
dzavalishin
/
Modest
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/mycss/declaration_low_level.c
68 строк
2 KB
lexborisov
Fixes for serialization status
14 мар 2017, 11:28
14 мар 2017, 11:28
9fe5924
Код
Авторство
О чём код?
/* Copyright (C) 2016 Alexander Borisov This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Author: lex.borisov@gmail.com (Alexander Borisov) */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <mycss/mycss.h> #include <mycss/declaration/init.h> mystatus_t serialization_callback(const char* data, size_t len, void* ctx) { printf("%.*s", (int)len, data); return MyCORE_STATUS_OK; } int main(int argc, const char * argv[]) { const char *declaration = "width : 100%; height: 1.2em"; // basic init mycss_t *mycss = mycss_create(); mystatus_t status = mycss_init(mycss); // check initialization if (MyCSS_FAILED(status)) return EXIT_FAILURE; // current entry work init mycss_entry_t *entry = mycss_entry_create(); status = mycss_entry_init(mycss, entry); // parse selectors printf("Input data:\n"); printf("\t%s", declaration); printf("\n"); mystatus_t out_status; mycss_declaration_entry_t *dec_entry = mycss_declaration_parse(entry->declaration, MyENCODING_UTF_8, declaration, strlen(declaration), &out_status); /* print result */ printf("Result:\n\t"); mycss_declaration_serialization_entries(entry, dec_entry, serialization_callback, NULL); printf("\n"); // destroy all mycss_entry_destroy(entry, true); mycss_destroy(mycss, true); return 0; }