blob: dba40b14dab8826db59e82ac82de7370957caafb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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/nekernel-org/nectar
#ifndef NECTAR_GL_IO_NHH
#define NECTAR_GL_IO_NHH
import ncl_printf;
const writefn(let fmt, let args)
{
ncl_printf(fmt, {args});
}
#endif
|