|
|
Migration from Git with 0.33rc1 changes.
// 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 <jself@gnu.org> */ #ifndef I18N_H #define I18N_H #include <libintl.h> #include <locale.h> #define _(String) gettext (String) #define N_(String) String #endif /* I18N_H */