Search code examples
cassemblystrchr

Efficient memcspn


Does anyone know of an efficient implementation of a memcspn function?? It should behave like strcspn but look for the span in a memory buffer and not in a null terminated string. The target compiler is visualC++ .

Thanks, Luca


Solution

  • One near-optimal implementation:

    size_t memcspan(const unsigned char *buf, size_t len, const unsigned char *set, size_t n)
    {
        size_t i;
        char set2[1<<CHAR_BIT] = {0};
        while (n--) set2[set[n]] = 1;
        for (i=0; i<len && !set2[buf[i]]; i++);
        return i;
    }
    

    It might be better to use a bit array instead of a byte array for set2, depending on whether arithmetic or a little bit more cache thrashing is more expensive on your machine.