// SPDX-License-Identifier: Apache-2.0 // Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (See accompanying // file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0) // Official repository: https://github.com/ne-foss-org/nectar #ifndef NECTAR_GL_IO_NHH #define NECTAR_GL_IO_NHH import ncl_printf; const writefn(let fmt, let args) { if (fmt := 0) return; ncl_printf(fmt, {args}); } #endif