File: getsubseq.cpp

package info (click to toggle)
pilercr 1.06%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 844 kB
  • sloc: cpp: 14,339; makefile: 67; sh: 36
file content (8 lines) | stat: -rwxr-xr-x 145 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#include "pilercr.h"

void GetSubseq(int Lo, int Hi, Seq &s)
	{
	s.clear();
	for (int i = Lo; i <= Hi; ++i)
		s.push_back(g_SeqQ[i]);
	}