浏览代码

Added memcmp to libc.

Mark Sibly 9 年之前
父节点
当前提交
b4c6ad723e
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      modules/libc/libc.monkey2

+ 1 - 0
modules/libc/libc.monkey2

@@ -88,6 +88,7 @@ Function strlen:Int( str:CString )
 Function memset:Void Ptr( dst:Void Ptr,value:Int,count:Int )
 Function memcpy:Void Ptr( dst:Void Ptr,src:Void Ptr,length:Int )
 Function memmove:Void Ptr( dst:Void Ptr,src:Void Ptr,length:Int )
+Function memcmp:Int( dst:Void Ptr,src:Void Ptr,length:Int )
 
 '***** time.h *****