File: bugs.h

package info (click to toggle)
cruft-ng 0.9.78
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,904 kB
  • sloc: cpp: 1,748; sh: 816; python: 262; makefile: 97; ansic: 82; perl: 75
file content (15 lines) | stat: -rw-r--r-- 260 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <map>
#include <string>

struct bug
{
	std::string package;
	std::string bugno;
	bug(std::string, std::string);
};

bool operator<(bug const&, bug const&);

void read_bugs(std::map<std::string, bug>& bugs, const std::string& bugs_path);