File: str_add.c

package info (click to toggle)
ngetty 1.1-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 448 kB
  • sloc: ansic: 1,585; makefile: 201; sh: 193; asm: 100
file content (5 lines) | stat: -rw-r--r-- 158 bytes parent folder | download | duplicates (7)
1
2
3
4
5
unsigned int str_add(char *d, const char *s, unsigned int u) /*EXTRACT_INCL*/ {
  unsigned int l=0;
  for (l=0; s[l] && l<u; l++) d[l] = s[l];
  return(l);
}