mirror of
https://github.com/eddyem/eddys_snippets.git
synced 2025-12-06 18:55:16 +03:00
18 lines
373 B
C
18 lines
373 B
C
#include <stdio.h>
|
|
|
|
#if defined GETTEXT
|
|
#include <libintl.h>
|
|
#define _(String) gettext(String)
|
|
#define gettext_noop(String) String
|
|
#define N_(String) gettext_noop(String)
|
|
#else
|
|
#define _(String) (String)
|
|
#define N_(String) (String)
|
|
#endif
|
|
|
|
|
|
void helloworld(){
|
|
/// ûÁÌÏÍ, ÍÉÒ!!!\n
|
|
printf(_("Hello, World!!!\n"));
|
|
}
|