Files
freeipa/client/ipa-client-common.h
T

31 lines
988 B
C
Raw Normal View History

2010-12-09 13:59:11 +01:00
/* Authors: Jakub Hrozek <jhrozek@redhat.com>
*
* Copyright (C) 2010 Red Hat
* see file 'COPYING' for use and warranty information
*
* This program is free software you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2016-05-24 10:18:43 -04:00
#pragma once
2010-11-05 09:36:00 +01:00
#include <libintl.h>
#define _(STRING) gettext(STRING)
2011-09-21 15:03:55 +03:00
#include <stdint.h>
2011-01-03 16:16:57 +01:00
#ifndef discard_const
#define discard_const(ptr) ((void *)((uintptr_t)(ptr)))
#endif
2010-11-05 09:36:00 +01:00
int init_gettext(void);