Mercurial > vim
view src/po/sjiscorr.c @ 7460:1420ccc9f610 v7.4.1033
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 2 21:11:51 2016 +0100
patch 7.4.1033
Problem: Memory use on MS-Windows is very conservative.
Solution: Use the global memory status to estimate amount of memory.
(Mike Williams)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 02 Jan 2016 21:15:04 +0100 |
parents | 65df2fba429b |
children | 33ba2adb6065 |
line wrap: on
line source
/* * Simplistic program to correct SJIS inside strings. When a trail byte is a * backslash it needs to be doubled. * Public domain. */ #include <stdio.h> #include <string.h> int main(argc, argv) int argc; char **argv; { char buffer[BUFSIZ]; char *p; while (fgets(buffer, BUFSIZ, stdin) != NULL) { for (p = buffer; *p != 0; p++) { if (strncmp(p, "charset=utf-8", 13) == 0) { fputs("charset=cp932", stdout); p += 12; } else if (strncmp(p, "# Original translations", 23) == 0) { fputs("# generated from ja.po, DO NOT EDIT", stdout); while (p[1] != '\n') ++p; } else if (*(unsigned char *)p == 0x81 && p[1] == '_') { putchar('\\'); ++p; } else { if (*p & 0x80) { putchar(*p++); if (*p == '\\') putchar(*p); } putchar(*p); } } } }