main.c (a01e3379df7c510218ec793cf6f288ac4aac6487) main.c (f99a4046d83609160b00d895b2a6a91dfc57e9dd)
1/*
2 * Copyright (c) 1983, 1988, 1993
3 * Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

698}
699
700const char *
701plurales(int n)
702{
703 return (n != 1 ? "es" : "");
704}
705
1/*
2 * Copyright (c) 1983, 1988, 1993
3 * Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

698}
699
700const char *
701plurales(int n)
702{
703 return (n != 1 ? "es" : "");
704}
705
706const char *
707pluralies(int n)
708{
709 return (n != 1 ? "ies" : "y");
710}
711
706/*
707 * Find the protox for the given "well-known" name.
708 */
709static struct protox *
710knownname(char *name)
711{
712 struct protox **tpp, *tp;
713

--- 56 unchanged lines hidden ---
712/*
713 * Find the protox for the given "well-known" name.
714 */
715static struct protox *
716knownname(char *name)
717{
718 struct protox **tpp, *tp;
719

--- 56 unchanged lines hidden ---