// SPDX-License-Identifier: GPL-3.0-or-later /* * $Id: i18n.h,v 1.1 2026/05/08 03:23:59 asm Exp $ * * il8n.h * * Copyright (C) 2026 Free Software Foundation, Inc. * * Author: Jason Self */ #ifndef I18N_H #define I18N_H #include #include #define _(String) gettext (String) #define N_(String) String #endif /* I18N_H */