paste.c (82725ba9bf1fd59746a4006a06f24d4d61d142f2) paste.c (1a7ac2bd24c1763b0d32e23d9c70308fbc24b07a)
1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam S. Moskowitz of Menlo Consulting.

--- 51 unchanged lines hidden (view full) ---

60#include <wchar.h>
61
62static wchar_t *delim;
63static int delimcnt;
64
65static int parallel(char **);
66static int sequential(char **);
67static int tr(wchar_t *);
1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam S. Moskowitz of Menlo Consulting.

--- 51 unchanged lines hidden (view full) ---

60#include <wchar.h>
61
62static wchar_t *delim;
63static int delimcnt;
64
65static int parallel(char **);
66static int sequential(char **);
67static int tr(wchar_t *);
68static void usage(void);
68static void usage(void) __dead2;
69
70static wchar_t tab[] = L"\t";
71
72int
73main(int argc, char *argv[])
74{
75 int ch, rval, seq;
76 wchar_t *warg;

--- 198 unchanged lines hidden ---
69
70static wchar_t tab[] = L"\t";
71
72int
73main(int argc, char *argv[])
74{
75 int ch, rval, seq;
76 wchar_t *warg;

--- 198 unchanged lines hidden ---