/*
 *
 *  Copyright (C) 2025  Yurii Yakubin (yurii.yakubin@gmail.com)
 *
 */

#include <string.h>
#include <assert.h>

void* memmem(const void* haystack, size_t haystack_len, const void* needle, size_t needle_len)
{
  assert(0);
  return NULL;
}
