home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / ixemul-45.0-src.tgz / tar.out / contrib / ixemul / string / strncpy.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  2KB  |  46 lines

  1. /*-
  2.  * Copyright (c) 1990 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * This code is derived from software contributed to Berkeley by
  6.  * the Systems Programming Group of the University of Utah Computer
  7.  * Science Department.
  8.  *
  9.  * Redistribution and use in source and binary forms are permitted
  10.  * provided that: (1) source distributions retain this entire copyright
  11.  * notice and comment, and (2) distributions including binaries display
  12.  * the following acknowledgement:  ``This product includes software
  13.  * developed by the University of California, Berkeley and its contributors''
  14.  * in the documentation or other materials provided with the distribution
  15.  * and in all advertising materials mentioning features or use of this
  16.  * software. Neither the name of the University nor the names of its
  17.  * contributors may be used to endorse or promote products derived
  18.  * from this software without specific prior written permission.
  19.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  20.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  21.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  22.  */
  23.  
  24. #include "defs.h"
  25.  
  26. ENTRY(strncpy)
  27. asm("
  28.     movl    sp@(4),d0    /* return value is toaddr */
  29.     movl    sp@(12),d1    /* count */
  30.     jeq    strncpydone    /* nothing to do */
  31.     movl    sp@(8),a0    /* a0 = fromaddr */
  32.     movl    d0,a1        /* a1 = toaddr */
  33. strncpyloop:
  34.     movb    a0@+,a1@+    /* copy a byte */
  35.     jeq    strncpyploop    /* copied null, go pad if necessary */
  36.     subql    #1,d1        /* adjust count */
  37.     jne    strncpyloop    /* more room, keep going */
  38. strncpydone:
  39.     rts
  40. strncpyploop:
  41.     subql    #1,d1        /* adjust count */
  42.     jeq    strncpydone    /* no more room, all done */
  43.     clrb    a1@+        /* clear a byte */
  44.     jra    strncpyploop    /* keep going */
  45. ");
  46.