var encVersion1 … // marshalCorpusFile encodes an arbitrary number of arguments into the file format for the // corpus. func marshalCorpusFile(vals ...any) []byte { … } // unmarshalCorpusFile decodes corpus bytes into their respective values. func unmarshalCorpusFile(b []byte) ([]any, error) { … } func parseCorpusValue(line []byte) (any, error) { … } // parseInt returns an integer of value val and type typ. func parseInt(val, typ string) (any, error) { … } // parseUint returns an unsigned integer of value val and type typ. func parseUint(val, typ string) (any, error) { … }