This file is indexed.

/usr/share/dx/samples/outboard/hello.c is in dxsamples 4.4.0-1.

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
#include <dx/dx.h>


  Error m_Hello(Object *in, Object *out)
{
  char message[30], *greeting;
  
  if (!in[0])
    sprintf(message,"hello world");
  else {
    DXExtractString(in[0],&greeting);
    sprintf(message,"%s %s", "hello", greeting);
  }
  
  out[0] = (Object)DXNewString(message);
  return OK;
}