File: libhello.c

package info (click to toggle)
jhbuild 3.38.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,640 kB
  • sloc: python: 11,621; sh: 4,548; makefile: 204; ansic: 19; sed: 16
file content (10 lines) | stat: -rw-r--r-- 122 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10

#include <stdio.h>

#include "libhello.h"


void greet_world(const char *text)
{
  printf("Hello world (%s)\n", text);
}