/*
* NAppGUI Cross-platform C SDK
* 2015-2025 Francisco Garcia Collado
* MIT Licence
* https://nappgui.com/en/legal/license.html
*
* File: ostext.c
*
*/
/* Operating System native text view */
#include "ostext.h"
#include "ostext.inl"
#include <sewer/cassert.h>
/*---------------------------------------------------------------------------*/
void _ostext_detach_and_destroy(OSText **view, OSPanel *panel)
{
cassert_no_null(view);
ostext_detach(*view, panel);
ostext_destroy(view);
}
/*---------------------------------------------------------------------------*/