summaryrefslogtreecommitdiff
path: root/gettext.c
blob: ae5394a49672b6c7fa6c5c69766aa4e80c187c5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright (c) 2010 Ævar Arnfjörð Bjarmason
 */
 
#include "git-compat-util.h"
#include "gettext.h"
 
int use_gettext_poison(void)
{
	static int poison_requested = -1;
	if (poison_requested == -1)
		poison_requested = getenv("GIT_GETTEXT_POISON") ? 1 : 0;
	return poison_requested;
}