• src/sbbs3/str_util.c str_util.h

    From Rob Swindell@1:103/705 to Git commit to main/sbbs/master on Thu Feb 4 21:16:27 2021
    https://gitlab.synchro.net/main/sbbs/-/commit/88586297679d65cc95e4a7b7
    Modified Files:
    src/sbbs3/str_util.c str_util.h
    Log Message:
    Create a version of truncstr() that returns the truncated stringNo immediate use/need, but I *almost* did. :-)
    --- SBBSecho 3.12-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Rob Swindell@1:103/705 to Git commit to main/sbbs/master on Sat Apr 24 00:28:03 2021
    https://gitlab.synchro.net/main/sbbs/-/commit/aa7f5b383a9f607c96431f8f
    Modified Files:
    src/sbbs3/str_util.c str_util.h
    Log Message:
    Created convert_ansi() which is kind of a minimal version of ANS2ASCIt Ctrl-A encodes a possibly ANSI-encoded string, supporting on color/attribute sequences and stripping all others.
    --- SBBSecho 3.14-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Rob Swindell@1:103/705 to Git commit to main/sbbs/master on Sun Aug 8 23:03:19 2021
    https://gitlab.synchro.net/main/sbbs/-/commit/5b359484e144b2ff8bdc2dba
    Modified Files:
    src/sbbs3/str_util.c str_util.h
    Log Message:
    Allow '*' pattern character to be used mid-string (not just beg or end)Previously, the '*' matching pattern character could only be used as the beginning or ending character of a pattern string; for any other use, it was treated just as any other exact-match character.Now, you can have exact-match characters on both the left and right sides of the '*', so pattern matching like the following is possible:<*@gmail.com>digital*manMultiple '*'s are still not treated special (only the first/left-most '*" is), so, for example, "*blah*" will not likely produce the desired matching effect (use "blah~" instead for this case).
    --- SBBSecho 3.14-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)