X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=mutt_regex.h;fp=mutt_regex.h;h=855d21574280e032a8ab8a62c0dcca2aa7ec7abe;hb=df70e07e24add1869bcc9b7af2277d9d0c09a281;hp=da047c5c8cd154018afb6c414e78469ba1933f7e;hpb=31edbe030ac69952aa535730427246b5e9a1603c;p=apps%2Fmadmutt.git diff --git a/mutt_regex.h b/mutt_regex.h index da047c5..855d215 100644 --- a/mutt_regex.h +++ b/mutt_regex.h @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. - */ + */ /* * A (more) generic interface to regular expression matching @@ -39,11 +39,10 @@ #define REGCOMP(X,Y,Z) regcomp(X, Y, REG_WORDS|REG_EXTENDED|(Z)) #define REGEXEC(X,Y) regexec(&X, Y, (size_t)0, (regmatch_t *)0, (int)0) -typedef struct -{ - char *pattern; /* printable version */ - regex_t *rx; /* compiled expression */ - int not; /* do not match */ +typedef struct { + char *pattern; /* printable version */ + regex_t *rx; /* compiled expression */ + int not; /* do not match */ } REGEXP; WHERE REGEXP Mask;