Artifact c366e3521019dcedabb46cb2d96880ec4a36bb44484958bb2dfa15c65a9e361c:
- File aocutils.h — part of check-in [8e5f2a70ef] at 2024-12-02 20:04:24 on branch trunk — 202401 and 202402, 4 stars (user: nnz, size: 377) [annotate] [blame] [check-ins using]
#ifndef AOCUTILS_H_INCLUDED #define AOCUTILS_H_INCLUDED int text2array(int **dst, const char *r); size_t slurp(char **dst, const char *filename); int max3(int a, int b, int c); double fmax3(double a, double b, double c); long max3l(long a, long b, long c); int min3(int a, int b, int c); double fmin3(double a, double b, double c); long min3l(long a, long b, long c); #endif