Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for matchprint (0.08 sec)

  1. src/regexp/testdata/testregex.c

    matchoffprint(int off)
    {
    	switch (off)
    	{
    	case -2:
    		printf("X");
    		break;
    	case -1:
    		printf("?");
    		break;
    	default:
    		printf("%d", off);
    		break;
    	}
    }
    
    static void
    matchprint(regmatch_t* match, int nmatch, int nsub, char* ans, unsigned long test)
    {
    	int	i;
    
    	for (; nmatch > nsub + 1; nmatch--)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
Back to top