[libc] Adds strspn implementation and Bitset to CPP utils. To get O(max(M,N)) complexity (where M, N are the string lengths), one can use a table to first store the characters of the string to be matched against, and then iterate over the source string to determine if it contains any.
This approach takes it a step further, and reduces the table's size by using bit manipulation techniques.
None of the comments in this file are necessary I would say. This code explains itself.