22 lines
439 B
C
22 lines
439 B
C
/*
|
|
* Copyright (c) 2026, Mirocom Laboratories
|
|
* Provided under the BSD-3 clause
|
|
*
|
|
* Abstract:
|
|
* This header defines settings related to quips operation.
|
|
* Author:
|
|
* Ian M. Moffett <ian@mirocom.org>
|
|
*/
|
|
|
|
#ifndef COMMON_KNOBS_H
|
|
#define COMMON_KNOBS_H 1
|
|
|
|
/* Core settings */
|
|
#define QUIP_VERSION "0.0.1"
|
|
#define QUIP_FILEPATH "build.quip"
|
|
|
|
/* Buffering settings */
|
|
#define LEX_FILEBUF_LEN 16
|
|
|
|
#endif /* !_COMMON_KNOBS_H_ */
|