Browse Source

Added memcmp to libc.

Mark Sibly 9 years ago
parent
commit
b4c6ad723e
1 changed files with 1 additions and 0 deletions
  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 *****