]> git.draconx.ca Git - cdecl99.git/blobdiff - t/declgen.h
Port to use getline.h from dxcommon.
[cdecl99.git] / t / declgen.h
index ff40b905b59ef91209e2548b6ce751bc34a557ac..61a6d85863c31e6b60f67f4dd9ae7ec2fc06342c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Generate random C declarations for testing.
- *  Copyright © 2012, 2022 Nick Bowler
+ *  Copyright © 2012, 2022-2024 Nick Bowler
  *
  *  This program is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -23,15 +23,11 @@ enum {
        GEN_NO_FUNCTION   = 0x01,
        GEN_NO_STORAGE    = 0x02,
        GEN_NO_VOID       = 0x04,
-       GEN_ONLY_REGISTER = 0x08,
+       GEN_ONLY_REGISTER = 0x08
 };
 
 struct test_rng;
 
-struct cdecl_declspec *gen_qualifiers(struct test_rng *rng, _Bool pointer);
-struct cdecl_declspec *gen_typespecs(struct test_rng *rng, _Bool novoid);
-struct cdecl_declspec *gen_randomize_specs(struct test_rng *rng,
-                                           struct cdecl_declspec *specs);
 struct cdecl_declspec *gen_declspecs(struct test_rng *rng, unsigned flags);
 struct cdecl_declarator *gen_declarators(struct test_rng *rng);