Exemplo n.º 1
0
TidyDoc TIDY_CALL       tidyCreate(void)
{
    TidyDocImpl* impl = tidyDocCreate( &TY_(g_default_allocator) );
    return tidyImplToDoc( impl );
}
Exemplo n.º 2
0
TidyDoc TIDY_CALL tidyCreateWithAllocator( TidyAllocator *allocator )
{
    TidyDocImpl* impl = tidyDocCreate( allocator );
    return tidyImplToDoc( impl );
}
Exemplo n.º 3
0
Arquivo: tidylib.c Projeto: aosm/tidy
TidyDoc TIDY_CALL       tidyCreate(void)
{
  TidyDocImpl* impl = tidyDocCreate();
  return tidyImplToDoc( impl );
}