This file is indexed.

/usr/include/urg/split.h is in liburg0-dev 0.8.12-1ubuntu1.

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
#ifndef QRK_SPLIT_H
#define QRK_SPLIT_H

/*!
  \file
  \brief string �p�� split �֐�

  \author Satofumi KAMIMURA

  $Id: split.h 1811 2010-04-30 16:12:05Z satofumi $
*/

#include <vector>
#include <string>


namespace qrk
{
    /*!
      \brief �w�蕶���ɂ�镪��

      \param[out] tokens ������̕�����
      \param[in] original �����Ώۂ̕�����
      \param[in] split_pattern �������s�������̗�
      \param[in] continious_pattern �A�������Z�p���[�^���P�‚̃Z�p���[�^�Ƃ��Ĉ���

      \return ������̃g�[�N����
    */
    size_t split(std::vector<std::string>& tokens,
                 const std::string& original, const char* split_pattern = " \t",
                 bool continious_pattern = true);
}

#endif /* !QRK_SPLIT_H */