Changeset 1900


Ignore:
Timestamp:
Apr 24, 2005, 11:00:23 AM (20 years ago)
Author:
bird
Message:

Implemented missing wmem* stuff. Wrote wcslen() in assembly.

Location:
trunk/src/emx/src/lib
Files:
5 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/emx/src/lib/libc.def

    • Property cvs2svn:cvs-rev changed from 1.97 to 1.98
    r1899 r1900  
    14821482    "___libc_Back_threadSleep" @1490
    14831483    "__std_wmemcpy" @1491
     1484    "__std_wmemchr" @1492
     1485    "__std_wmemcmp" @1493
     1486    "__std_wmemmove" @1494
     1487    "__std_wmemset" @1495
  • TabularUnified trunk/src/emx/src/lib/str/386/wmemcpy.s

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1899 r1900  
    11/ wmemcpy.s (emx+gcc) -- Copyright (c) 1990-1996 by Eberhard Mattes
     2/                     -- Copyright (c) 2005      by Knut St. Osmundsen
    23
    34#include <emx/asm386.h>
     
    67
    78/ assumes ds=es!
     9/ assumes sizeof(wchar_t) == 2
    810
    911        .text
     
    1113        ALIGN
    1214
     15/ wchar_t *wmemcpy (wchar_t *wcs1, const wchar_t *wcs2, size_t cwc)
    1316_STD(wmemcpy):
    1417        PROFILE_NOFRAME
Note: See TracChangeset for help on using the changeset viewer.