Displaying 2 results from an estimated 2 matches for "map_p".
Did you mean:
map_r
2001 Sep 30
3
UTF-8 stuff
...;
- }
- }
- else
- {
- iconv_close(cd);
- }
- *to = malloc(BUFSIZE - to_left + 1);
- buffer[BUFSIZE - to_left] = 0;
- strcpy(*to, buffer);
- return 0;
-#else
- return 1; /* Dummy stub */
-#endif /* HAVE_ICONV */
-}
+ char *charset;
-charset_map *get_map(const char *encoding)
-{
- charset_map *map_p = maps;
- while(map_p->name != NULL)
- {
- if(!strcasecmp(map_p->name, encoding))
- {
- return map_p;
- }
- map_p++;
- }
- return NULL;
+ if (!current_charset)
+ convert_set_charset(0);
+ charset = current_charset ? current_charset : "US-ASCII";
+ return convert_string(c...
2008 Aug 19
2
how to import from SPSS without shortening variable names
Hello,
as I import '.sav' files from SPSS, the variable names are shortened to
8 uppercase characters:
"sex_of_therapist" will become "SEX_OF_TH"
Is there a way around this? How can I retrieve the full names?
Greets from Southern Germany,
Timo Stolz