CPE 101, Winter 2008

Lab 8 (String Functions)

Updates and Corrections

Due Date:

Objectives

Overview

Rule

Resources

Lab Requirements

  1. In a file called stringFuncts.c write functions that do exactly what the corresponding Standard Library functions do without using any of the Standard Library funcions, and also without #include-ing <string.h> or <string.h>. Check the man pages for descriptions, or look them up in any other reference. You'll have to figure out the function prototypes yourself from that documentation. You can ignore the keyword const that shows up in a lot of them. Functions that return a char * can be satisfied with the address of a char, or of the first char of a string. The data type size_t that shows up from time to time can be used interchangeably (for this lab) with an int.

Suggestion

Handing in Your Source Electronically . . .

Use the handin command being sure to replace the yy with your lecture section number.
                11:59 vogon ~$ handin mhaungs Lab08-yy stringFuncts.c