psdate.c (635b2e1e5aca489ca2fe6dc4256832738f977fbe) | psdate.c (bcbdb01e569876034a66c001132994482b048c31) |
---|---|
1/*- 2 * Copyright (C) 1996 3 * David L. Nugent. 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 --- 15 unchanged lines hidden (view full) --- 24 * SUCH DAMAGE. 25 */ 26 27#ifndef lint 28static const char rcsid[] = 29 "$FreeBSD$"; 30#endif /* not lint */ 31 | 1/*- 2 * Copyright (C) 1996 3 * David L. Nugent. 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 --- 15 unchanged lines hidden (view full) --- 24 * SUCH DAMAGE. 25 */ 26 27#ifndef lint 28static const char rcsid[] = 29 "$FreeBSD$"; 30#endif /* not lint */ 31 |
32#include <stdio.h> | 32#include <ctype.h> 33#include <err.h> |
33#include <stdlib.h> 34#include <string.h> | 34#include <stdlib.h> 35#include <string.h> |
35#include <ctype.h> | |
36#include <xlocale.h> | 36#include <xlocale.h> |
37#include <err.h> | |
38 39#include "psdate.h" 40 41 42static int 43numerics(char const * str) 44{ 45 int rc = isdigit((unsigned char)*str); --- 217 unchanged lines hidden --- | 37 38#include "psdate.h" 39 40 41static int 42numerics(char const * str) 43{ 44 int rc = isdigit((unsigned char)*str); --- 217 unchanged lines hidden --- |