summaryrefslogtreecommitdiffhomepage
path: root/include/GenericsLibrary/io.nhh
blob: 2471bb08e3d85f3098978b11bb47ee1bef35cd7d (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/ne-foss-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