foot/osc.c
2019-06-15 22:22:44 +02:00

12 lines
216 B
C

#include "osc.h"
#define LOG_MODULE "osc"
#define LOG_ENABLE_DBG 1
#include "log.h"
bool
osc_dispatch(struct terminal *term)
{
LOG_DBG("OCS: %.*s", (int)term->vt.osc.idx, term->vt.osc.data);
return true;
}