Referência do Arquivo /home/carolina/workspace/spvolren_cpu/tools.c
#include <string.h>
#include "tools.h"
Vá para o código-fonte deste arquivo.
Funções
| int endsWith |
( |
char * |
s, |
|
|
char * |
t | |
|
) |
| | |
Definição na linha 21 do arquivo tools.c.
00022 {
00023 char *cp;
00024
00025 return (cp = strstr(s, t)) && ! *(cp + strlen(t));
00026 }