$ cat -n does_not_exist; echo $? cat: does_not_exist: No such file or directory 1 function old new delta print_numbered_lines 118 129 +11 nl_main 196 201 +5 cat_main 421 425 +4 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 3/0 up/down: 20/0) Total: 20 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
		
			
				
	
	
		
			37 lines
		
	
	
		
			732 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			732 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* vi: set sw=4 ts=4: */
 | 
						|
/*
 | 
						|
 * Copyright (C) 2017 Denys Vlasenko <vda.linux@googlemail.com>
 | 
						|
 *
 | 
						|
 * Licensed under GPLv2, see file LICENSE in this source tree.
 | 
						|
 */
 | 
						|
//kbuild:lib-y += print_numbered_lines.o
 | 
						|
 | 
						|
#include "libbb.h"
 | 
						|
 | 
						|
int FAST_FUNC print_numbered_lines(struct number_state *ns, const char *filename)
 | 
						|
{
 | 
						|
	FILE *fp = fopen_or_warn_stdin(filename);
 | 
						|
	unsigned N;
 | 
						|
	char *line;
 | 
						|
 | 
						|
	if (!fp)
 | 
						|
		return EXIT_FAILURE;
 | 
						|
 | 
						|
	N = ns->start;
 | 
						|
	while ((line = xmalloc_fgetline(fp)) != NULL) {
 | 
						|
		if (ns->all
 | 
						|
		 || (ns->nonempty && line[0])
 | 
						|
		) {
 | 
						|
			printf("%*u%s%s\n", ns->width, N, ns->sep, line);
 | 
						|
			N += ns->inc;
 | 
						|
		} else if (ns->empty_str)
 | 
						|
			fputs(ns->empty_str, stdout);
 | 
						|
		free(line);
 | 
						|
	}
 | 
						|
	ns->start = N;
 | 
						|
 | 
						|
	fclose(fp);
 | 
						|
 | 
						|
	return EXIT_SUCCESS;
 | 
						|
}
 |