mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	1999-08-29 Thorsten Kukuk <kukuk@suse.de> * nis/Versions: Add _nss_*_getipnodebyname_r. * nis/nss_nis/nis-hosts.c: Add _nss_nis_getipnodebyname_r. * nis/nss_nisplus/nisplus-hosts.c: Add _nss_nisplus_getipnodebyname_r. * nss/Versions: Add _nss_files_getipnodebyname_r.
		
			
				
	
	
		
			52 lines
		
	
	
		
			995 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			995 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <error.h>
 | 
						|
#include <sys/types.h>
 | 
						|
#include <regex.h>
 | 
						|
#include <stdio.h>
 | 
						|
#include <stdlib.h>
 | 
						|
 | 
						|
int
 | 
						|
main (void)
 | 
						|
{
 | 
						|
  regex_t re;
 | 
						|
  regmatch_t ma[2];
 | 
						|
  int reerr;
 | 
						|
  int res = 0;
 | 
						|
 | 
						|
  re_set_syntax (RE_DEBUG);
 | 
						|
  reerr = regcomp (&re, "0*[0-9][0-9]", 0);
 | 
						|
  if (reerr != 0)
 | 
						|
    {
 | 
						|
      char buf[100];
 | 
						|
      regerror (reerr, &re, buf, sizeof buf);
 | 
						|
      error (EXIT_FAILURE, 0, buf);
 | 
						|
    }
 | 
						|
 | 
						|
  if (regexec (&re, "002", 2, ma, 0) != 0)
 | 
						|
    {
 | 
						|
      error (0, 0, "\"0*[0-9][0-9]\" does not match \"002\"");
 | 
						|
      res = 1;
 | 
						|
    }
 | 
						|
  puts ("Succesful match with \"0*[0-9][0-9]\"");
 | 
						|
 | 
						|
  regfree (&re);
 | 
						|
 | 
						|
  reerr = regcomp (&re, "[0a]*[0-9][0-9]", 0);
 | 
						|
  if (reerr != 0)
 | 
						|
    {
 | 
						|
      char buf[100];
 | 
						|
      regerror (reerr, &re, buf, sizeof buf);
 | 
						|
      error (EXIT_FAILURE, 0, buf);
 | 
						|
    }
 | 
						|
 | 
						|
  if (regexec (&re, "002", 2, ma, 0) != 0)
 | 
						|
    {
 | 
						|
      error (0, 0, "\"[0a]*[0-9][0-9]\" does not match \"002\"");
 | 
						|
      res = 1;
 | 
						|
    }
 | 
						|
  puts ("Succesful match with \"[0a]*[0-9][0-9]\"");
 | 
						|
 | 
						|
  regfree (&re);
 | 
						|
 | 
						|
  return res;
 | 
						|
}
 |