repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git]
/
compiler
/
include
/
aros
/
locale.h
blob
29172258255cf51d0e09b7ef3dace71257549297
1
#ifndef _AROS_LOCALE_H
2
#define _AROS_LOCALE_H
3
4
#include <aros/system.h>
5
6
#define GetString(ID) \
7
({ \
8
extern const char *__CONCAT(ID, _STR); \
9
\
10
__CONCAT(ID, _STR); \
11
})
12
13
#endif
/* !_AROS_LOCALE_H */