diff options
author | drh <drh@noemail.net> | 2004-05-22 17:41:58 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-05-22 17:41:58 +0000 |
commit | bbd42a6dda2d0b579d22b846c79a765ebc80bec9 (patch) | |
tree | 9d2cebb557e78c0ce35797d8f49bcca798039058 /src/utf.c | |
parent | 60ca804396e6e94323f6293d2796f856dc6acba6 (diff) | |
download | sqlite-bbd42a6dda2d0b579d22b846c79a765ebc80bec9.tar.gz sqlite-bbd42a6dda2d0b579d22b846c79a765ebc80bec9.zip |
Split up os.c into separate files, one for each platform. (CVS 1441)
FossilOrigin-Name: 5c61be1c47ac960fba2a642e69a98436ce1cd725
Diffstat (limited to 'src/utf.c')
-rw-r--r-- | src/utf.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -12,7 +12,7 @@ ** This file contains routines used to translate between UTF-8, ** UTF-16, UTF-16BE, and UTF-16LE. ** -** $Id: utf.c,v 1.7 2004/05/22 03:05:34 danielk1977 Exp $ +** $Id: utf.c,v 1.8 2004/05/22 17:41:59 drh Exp $ ** ** Notes on UTF-8: ** @@ -49,11 +49,8 @@ ** replacement character U+FFFD for each pair of bytes that cannot be ** interpeted as part of a valid unicode character. */ - #include <assert.h> -#include <unistd.h> #include "sqliteInt.h" -#include "os.h" typedef struct UtfString UtfString; struct UtfString { @@ -590,5 +587,3 @@ int sqlite3utfTranslate( } return SQLITE_OK; } - - |