void *memset(void *dst, int c, size_t len)
{ if (efi_table_attr(efi_system_table, boottime) == NULL) return efistub_memset(dst, c, len);
efi_bs_call(set_mem, dst, len, c & U8_MAX); return dst;
}
/** * memcmp - Compare two areas of memory * @cs: One area of memory * @ct: Another area of memory * @count: The size of the area.
*/ #undef memcmp int memcmp(constvoid *cs, constvoid *ct, size_t count)
{ constunsignedchar *su1, *su2; int res = 0;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.