#include <string.h>#include <stdio.h>#include "stack-c.h"#include "sciprint.h"Include dependency graph for as2osc.c:

Go to the source code of this file.
Functions | |
| int | as2osc (char *thechain) |
| int as2osc | ( | char * | thechain | ) |
Definition at line 11 of file as2osc.c.
References l, and sciprint().
Referenced by intex9c().
00013 { 00014 static int k, l; 00015 l = strlen(thechain); 00016 sciprint("character string length %d\r\n",l); 00017 for (k = 0 ; k < l; k++) 00018 { 00019 if ( thechain[k] == 'a' ) thechain[k]='o'; 00020 } 00021 return 0; 00022 }
Here is the call graph for this function:

Here is the caller graph for this function:

1.5.1