uppercase.c
v0.0.0
Published
uppercase a string in-place in c
Readme
uppercase.c
uppercase a string in-place in c
example
#include "stdio.h"
#require "uppercase.c" as uppercase
int main (int argc, char **argv) {
for (int i = 1; i < argc; i++) {
printf("%s ", uppercase(argv[i]));
}
printf("\n");
return 0;
}methods
#require "uppercase.c" as upperchar *upper(char *str)
Uppercase the string str in-place, returning str.
install
With npm do:
npm install uppercase.cThis is a dotc module.
license
MIT
