about summary refs log tree commit diff stats
path: root/html/tracing-test.mu
blob: a6171054b4d889518ed8a9414b5ad31277e23577 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  run [
    result:boolean <- equal [abc], [abcd]  # lengths differ
  ]
  trace-should-contain [
    equal: comparing lengths
  ]
  trace-should-not-contain [
    equal: comparing characters
  ]
"cm"> * * In addition, as a special exception, the copyright holders give permission to * link the code of portions of this program with the OpenSSL library under * certain conditions as described in each individual source file, and * distribute linked combinations including the two. * * You must obey the GNU General Public License in all respects for all of the * code used other than OpenSSL. If you modify file(s) with this exception, you * may extend this exception to your version of the file(s), but you are not * obligated to do so. If you do not wish to do so, delete this exception * statement from your version. If you delete this exception statement from all * source files in the program, then also delete it here. * */ #ifndef RESOURCE_H #define RESOURCE_H #include "common.h" typedef struct resource_t { char *name; resource_presence_t presence; char *status; int priority; } Resource; Resource* resource_new(const char *const name, resource_presence_t presence, const char *const status, const int priority); void resource_destroy(Resource *resource); int resource_compare_availability(Resource *first, Resource *second); #endif