]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/samples/udata/reader.c
ICU-62107.0.1.tar.gz
[apple/icu.git] / icuSources / samples / udata / reader.c
index 6cde948033508ffa26e61bd64576dd7cd25241be..00817b8900851e835db8f8f6ced7f1e58b355073 100644 (file)
@@ -1,12 +1,18 @@
 /*
  *******************************************************************************
  *
- *   Copyright (C) 1999-2004, International Business Machines
+ *   © 2016 and later: Unicode, Inc. and others.
+ *   License & terms of use: http://www.unicode.org/copyright.html#License
+ *
+ *******************************************************************************
+ *******************************************************************************
+ *
+ *   Copyright (C) 1999-2009, International Business Machines
  *   Corporation and others.  All Rights Reserved.
  *
  *******************************************************************************
  *   file name:  reader.c
- *   encoding:   US-ASCII
+ *   encoding:   UTF-8
  *   tab size:   8 (not used)
  *   indentation:4
  *
@@ -31,7 +37,7 @@
 #include "unicode/putil.h"
 #include "unicode/udata.h"
 
-#define DATA_NAME "example"
+#define DATA_NAME "mypkg_example"
 #define DATA_TYPE "dat"
 
 /* UDataInfo cf. udata.h */
@@ -90,10 +96,8 @@ main(int argc, const char *argv[]) {
     char *currdir = getcwd(NULL, 0);
 #endif
 
-    /* need to put  "current/dir/pkgname" as path */
+    /* need to put  "current/dir" as path */
     strcpy(curPathBuffer, currdir);
-    strcat(curPathBuffer, U_FILE_SEP_STRING);
-    strcat(curPathBuffer, "mypkg"); /* package name */
 
     result=udata_openChoice(curPathBuffer, DATA_TYPE, DATA_NAME, isAcceptable, NULL, &status);