add biseqblk, biseqcaselessblk, binsertblk, bjoinblk#143
Open
add biseqblk, biseqcaselessblk, binsertblk, bjoinblk#143
Conversation
|
Minimum allowed coverage is Generated by 🐒 cobertura-action against c04d64c |
Port four block-oriented function variants from the parent project. These accept raw (void *, int len) pairs instead of bstring arguments, enabling use with non-bstring data and string literals via the new static convenience macros. New functions: - biseqblk: compare bstring with a memory block for equality - biseqcaselessblk: case-insensitive variant of biseqblk - binsertblk: insert a memory block into a bstring at a position - bjoinblk: join a bstrList with a memory block separator binsert and bjoin are refactored as thin wrappers around their blk counterparts. biseqcaseless is similarly refactored to delegate to biseqcaselessblk. New Static macros added to bstrlib.h: - bcatStatic, bfromStatic, bassignStatic - binsertStatic, bjoinStatic - biseqStatic, bisstemeqStatic - biseqcaselessStatic, bisstemeqcaselessStatic Novel unit tests added for all four new functions (core_047 through core_050). The rest of the changeset is adapted from code by Paul Hsieh.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Port four block-oriented function variants from the parent project. These accept raw (void *, int len) pairs instead of bstring arguments, enabling use with non-bstring data and string literals via the new static convenience macros.
New functions:
binsert and bjoin are refactored as thin wrappers around their blk counterparts. biseqcaseless is similarly refactored to delegate to biseqcaselessblk.
New Static macros added to bstrlib.h:
Novel unit tests added for all four new functions (core_047 through core_050). The rest of the changeset is adapted from code by Paul Hsieh.