-
aprisobal changed the public information on the SjASMPlus - Z80 Assembly Cross-Compiler project.
2009-03-10 09:46:46 UTC in SjASMPlus - Z80 Assembly Cross-Compiler
-
aprisobal committed revision 5 to the SjASMPlus - Z80 Assembly Cross-Compiler SVN repository, changing 11 files.
2008-11-05 23:01:40 UTC in SjASMPlus - Z80 Assembly Cross-Compiler
-
aprisobal committed revision 4 to the SjASMPlus - Z80 Assembly Cross-Compiler SVN repository, changing 13 files.
2008-11-05 22:04:13 UTC in SjASMPlus - Z80 Assembly Cross-Compiler
-
aprisobal committed revision 3 to the SjASMPlus - Z80 Assembly Cross-Compiler SVN repository, changing 142 files.
2008-11-05 18:16:10 UTC in SjASMPlus - Z80 Assembly Cross-Compiler
-
aprisobal committed revision 2 to the SjASMPlus - Z80 Assembly Cross-Compiler SVN repository, changing 31 files.
2008-11-05 17:47:14 UTC in SjASMPlus - Z80 Assembly Cross-Compiler
-
What do you think about using function mb_check_encoding to check utf8 string? i.e.:
function utf8_is_valid($str) {
if (function_exists('mb_check_encoding')) {
return mb_check_encoding($str, 'UTF-8');
}
...
2008-03-13 09:12:58 UTC in PHP UTF-8
-
function utf8_sprintf($format) {
$argv = func_get_args();
array_shift($argv);
return utf8_vprintf($format, $argv);
}
function utf8_vprintf($format, $arguments) {
if (mb_internal_encoding() != 'UTF-8') {
return vsprintf($format, $arguments);
}
$newargv = array();
preg_match_all("`\%('.+|[0 ]|)([1-9][0-9]*|)s`U", $format, $results, PREG_SET_ORDER);
if (count($results)) {.
2007-09-29 09:41:36 UTC in PHP UTF-8
-
The function is not by me.
/**
* Wordwrap for utf8 encoded strings
* @param string $str
* @param integer $len
* @param string $what
* @return string
* @author Milian Wolff
*/
function utf8_wordwrap($str, $width, $break=" ", $cut = false){
if(!$cut){
$regexp = '#^(?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){'.$width.',}\b#U';
} else {
$regexp =...
2007-09-29 09:39:29 UTC in PHP UTF-8
-
A new release of SjASMPlus, the portable cross-compiler for Z80 assembly language is now available. Sources, documentation and binaries compiled for x86 Microsoft Windows is available.
This release contains several bug fixes and improvements. Also it contains Makefile to build under Linux, FreeBSD etc.
2006-11-29 07:47:41 UTC in SjASMPlus - Z80 Assembly Cross-Compiler
-
A new release of SjASMPlus, the portable cross-compiler for Z80 assembly language is now available. Sources, documentation and binaries compiled for x86 Microsoft Windows is available.
This release contains many new improvements such as Lua scripting, 3-pass design and many more! Enjoy.
2006-09-18 09:33:45 UTC in SjASMPlus - Z80 Assembly Cross-Compiler