mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-27 18:50:47 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34239 72102866-910b-0410-8b05-ffd578937521
20 lines
438 B
C
20 lines
438 B
C
/*
|
|
Copyright (C) 2011 Free Software Foundation
|
|
|
|
Copying and distribution of this file, with or without modification,
|
|
are permitted in any medium without royalty provided the copyright
|
|
notice and this notice are preserved.
|
|
|
|
*/
|
|
|
|
int main ()
|
|
{
|
|
/* Check that latin1 pound sign in source is utf8 in executable
|
|
*/
|
|
const unsigned char *str = "£";
|
|
if (str[0] != 0xc2 || str[1] != 0xa3)
|
|
{
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|