This file is indexed.

/usr/include/IVGlyph/textbuff.h is in ivtools-dev 1.2.11a1-11.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
//
// Simple Text Editor Buffer
//
// Copyright (C) 1993 Ellemtel Telecommunication Systems Labratories
//
// Permission is granted to any individual or institution to use, copy,
// modify, and distribute this software, provided that this complete
// copyright and permission notice is maintained, intact, in all copies
// and supporting documentation.
//
// Ellemtel Telecommunication Systems Labratories make no representation
// of the suitability of this software for any purpose. It is provided
// "as is" without any expressed or implied warranty.
//
// Jan Andersson, Torpa Konsult AB
// janne@torpa.se - 1993-08-29

#ifndef eiv_textbuffer_h
#define eiv_textbuffer_h

// sub-class of TextBuffer to enable dynamic expansion of
// text and initialization from files.

#include <IV-2_6/InterViews/textbuffer.h>

class CopyString;
class EivTextBuffer : public TextBuffer {
 public:
   EivTextBuffer();
   ~EivTextBuffer();

   // load/save buffer from/into file
   enum { OpenError, MemoryError, ReadError, ReadOk, WriteError, WriteOk };
   int load(const char* path);
   int save();
   int save(const char* path);
   
   // Search for a match with the regular regular expression defined in
   // pattern. Returns index to the end (forward) or the beginning (backward)
   // of the match. Returns a negative number if there was no match.
   int search_forward(const char* pattern, int index);
   int search_backward(const char* pattern, int index);
   // returns start or end position of last search
   int search_beginning();
   int search_end();
   
   virtual int Insert(int index, const char* string, int count);
   virtual int Delete(int index, int count);
   
   // various access functions
   boolean buffer_modified();

   int lines();			// lines in buffer
   int characters();		// characters in buffer
   int allocated_size();	// allocated size

   int line(int);		// index to line
   int column(int);		// index to column


   void righttrim();				     
 private:
   void expand_buffer(int);
   int linecount;
   boolean saved_;
   boolean modified_;
   CopyString* path_;
   Regexp* current_regexp_;
};

inline boolean EivTextBuffer::buffer_modified()
{
   return modified_;
}

inline int EivTextBuffer::lines()
{
  return Height();
}

inline int EivTextBuffer::characters()
{
   return Length();
} 

inline int EivTextBuffer::allocated_size()
{
   return size;
} 

inline int EivTextBuffer::line(int index)
{
   return LineNumber(index);
}

inline int EivTextBuffer::column(int index)
{
   return LineOffset(index);
}

#endif