ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

int memcmp ( const void s1,
const void s2,
size_t  n 
)

Definition at line 12 of file memcmp.c.

Referenced by __lexicographical_compare_3way(), _ILIsEqualSimple(), _mesa_memcmp(), _mesa_search_program_cache(), _unmarshal_itsf_header(), _unmarshal_itsp_header(), _unmarshal_lzxc_control_data(), _unmarshal_pmgi_header(), _unmarshal_pmgl_header(), AboutProtocol_Start(), ACMStream_fnRead(), ACMStream_fnSetFormat(), ACMWrapper_ConnectInput(), AdapterFindByHardwareAddress(), addr_eq(), adns__procdgram(), alloc_importfile(), alloc_msft_importinfo(), AVIDec_ConnectInput(), AVIFILE_FormatsEqual(), BLOBComp(), BmpFrameEncode_SetPixelFormat(), BmpFrameEncode_WriteSource(), Pane::calc_widths(), CBSearchRecycleBin(), ccf_options(), CDecodeHashMsg_VerifyHash(), CDecodeMsg_SaveAlgorithmID(), CertCompareCertificateName(), CertCompareIntegerBlob(), CertComparePublicKeyInfo(), check_backup_boot(), chm_resolve_object(), cmp_iid(), CmpGetBiosDate(), char_traits< char >::compare(), compare_cert_by_cert_id(), compare_cert_by_md5_hash(), compare_cert_by_sha1_hash(), compare_cert_by_signature_hash(), compare_crl_issued_by(), compare_ctl_by_md5_hash(), compare_ctl_by_sha1_hash(), compare_ctl_existing(), compare_dist_point_name(), compare_files(), CRecycleBin::CompareIDs(), comparer(), context_find_fbo_entry(), CoTreatAsClass(), CRYPT_IsCertificateSelfSigned(), CRYPT_ReadSerializedStore(), CryptCATAdminEnumCatalogFromHash(), CryptSIPGetSignedDataMsg(), CryptSIPRetrieveSubjectGuid(), ctl2_alloc_importfile(), ctl2_alloc_string(), ctl2_encode_variant(), ctl2_find_guid(), CURSORICON_LoadFromFile(), ddraw_match_surface_desc(), delete_hash_entry(), detect_compression_type(), DGifOpen(), dhcpack(), dhcpnak(), dhcpoffer(), DnsRecordCompare(), doContent(), DoOpenFile(), enum_metafile_proc(), ept_map(), FF_GetEfiPartitionEntry(), ffp_frag_program_key_compare(), find_arb_pshader(), find_data(), ShellDirectory::find_entry(), find_ept_entry(), find_glsl_pshader(), find_subtable_with_diffs(), find_subtable_with_offsets(), FindAcpiBios(), FindNextVolumeW(), FindPxeStructure(), FPropContainsProp(), FTP_ReceiveResponse(), GdipIsMatrixEqual(), get_cache_glyph_widths(), get_resource_section(), get_scheme_code(), get_url(), GetShellSecurityDescriptor(), glsl_program_key_compare(), GuiConsoleOpenUserSettings(), GuiConsoleUpdateSelection(), handle_insert_comment(), hash_lookup(), hash_matches_blob(), IAVIStream_fnSetFormat(), icb_ptr(), ICMStream_fnSetFormat(), ICreateTypeInfo2_fnSetFuncAndParamNames(), image_xpng_filter(), IMAGEHLP_GetSectionOffset(), CStringTest::import_checks(), InternalGetBinaryType(), IrotGetObject(), IrotGetTimeOfLastChange(), IrotIsRunning(), IrotRegister(), is_identity_fixup(), IsEqualGUID(), CDefaultContextMenu::IsShellExtensionAlreadyLoaded(), ITypeLib2_Constructor_SLTG(), ITypeLib2_fnFindName(), ITypeLib2_fnIsName(), key_prov_info_matches_cert(), lcid_from_rfc1766(), lexicographical_compare(), load_ttf_name_id(), LPropCompareProp(), main(), ME_GetSelectionParaFormat(), ME_IsCandidateAnURL(), ME_IsFontEqual(), ME_MouseMove(), ME_SetParaFormat(), MediaSeeking_IsUsingTimeFormat(), mes_proc_header_unmarshal(), module_get_type_by_name(), module_is_container_loaded(), MPEGSplitter_pre_connect(), msi_file_hash_matches(), names_add(), NBNameCacheWalk(), nbSStat(), NetBIOSEnumAdapters(), nsPromptService_ConfirmEx(), nsURI_SchemeIs(), oc_short(), OleConvertOLESTREAMToIStorage(), OleDocumentView_SetRect(), OLEPictureImpl_Load(), pa_ptr(), parse_assembly_elem(), parse_displayname(), parse_extern_script(), parse_file(), parse_li(), parse_options(), parse_response(), parse_ul(), Parser_OutputPin_QueryAccept(), ParserDetectTextEncoding(), pdb_init(), pesection(), ProcessRelocations(), PROFILE_DetectTextEncoding(), PROFILE_Open(), pstcache_enumerate(), re_match_2_internal(), read_fat(), read_header(), read_header_file(), read_mapped_resources(), read_reply(), read_xx_header(), readconfiggeneric(), REBAR_AutoSize(), RegpOpenOrCreateKey(), ResProtocol_Start(), ResProtocolInfo_ParseUrl(), RosSymCreateFromFile(), RosSymCreateFromMem(), RpcAssoc_GetIdleConnection(), RpcAuthInfo_IsEqual(), RpcQualityOfService_IsEqual(), RPCRT4_find_interface(), rpcrt4_ncacn_http_receive_fragment(), RpcServerAssoc_FindContextHandle(), RpcServerUnregisterIf(), RSAENH_CPVerifySignature(), RunningObjectTableImpl_GetObject(), RunningObjectTableImpl_GetTimeOfLastChange(), RunningObjectTableImpl_IsRunning(), SecManagerImpl_GetSecurityId(), CDesktopFolder::SetNameOf(), CFSFolder::SetNameOf(), skip_html_comment(), StgIsStorageFile(), StgIsStorageILockBytes(), StorageImpl_LoadFileHeader(), String_lastIndexOf(), SwapSplayLinks(), SystemFunction030(), test_pbo_functionality(), text_richtext_filter(), TrustIsCertificateSelfSigned(), UrlCanonicalizeW(), VarBstrCmp(), vs_args_equal(), wined3d_adapter_init_gl_caps(), wined3d_device_draw_rect_patch(), wined3d_device_set_transform(), wined3d_stateblock_capture(), WkstaEnumAdaptersCallback(), WNetEnumCachedPasswords(), wprint_name(), write_if_change(), WSAttemptAutodialName(), WsNcGetCatalogFromProviderId(), WsNcUpdateNamespaceList(), WsTcFindProvider(), XboxMemInit(), xmlDictExists(), and xmlDictLookup().

{
    if (n != 0) {
        const unsigned char *p1 = s1, *p2 = s2;
        do {
            if (*p1++ != *p2++)
                return (*--p1 - *--p2);
        } while (--n != 0);
    }
    return 0;
}

Generated on Sat May 26 2012 06:04:33 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.