????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.191 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/mbstring/libmbfl/tests/ |
Upload File : |
/**
* this is a small sample script to use libmbfl.
* Rui Hirokawa <hirokawa@php.net>
*
* this file is encoded in EUC-JP.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "mbfl/mbfilter.h"
int main(int argc, char **argv)
{
enum mbfl_no_encoding no_encoding;
enum mbfl_no_language no_language;
mbfl_memory_device dev;
mbfl_string string;
int final = 0;
int state = 0;
if (argc < 3) {
fprintf(stderr, "Usage: %s lang encoding\n", argv[0]);
return EXIT_FAILURE;
}
if ((no_language = mbfl_name2no_language(argv[1])) ==
mbfl_no_language_invalid) {
printf("Unsupported NLS: %s\n", argv[1]);
return EXIT_FAILURE;
}
if ((no_encoding = mbfl_name2no_encoding(argv[2])) ==
mbfl_no_encoding_invalid) {
printf("Unsupported encoding: %s\n", argv[2]);
return EXIT_FAILURE;
}
do {
mbfl_memory_device_init(&dev, 0, 4096);
mbfl_string_init_set(&string, no_language, no_encoding);
for (;;) {
const int c = fgetc(stdin);
if (c == EOF) {
final = 1;
break;
} else if (c == 10) {
if (state == 1) {
state = 0;
continue;
}
break;
} else if (c == 13) {
state = 1;
break;
}
if (dev.pos >= dev.length) {
if (dev.length + dev.allocsz < dev.length) {
printf("Unable to allocate memory\n");
return EXIT_FAILURE;
}
mbfl_memory_device_realloc(&dev, dev.length + dev.allocsz,
dev.allocsz);
}
dev.buffer[dev.pos++] = (unsigned char)c;
}
mbfl_memory_device_result(&dev, &string);
printf("%d\n", mbfl_strwidth(&string));
mbfl_string_clear(&string);
} while (!final);
return EXIT_SUCCESS;
}