aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ephy-string-test.c
Commit message (Collapse)AuthorAgeFilesLines
* ephy-string: Handle about: and ephy-about: as special cases in ↵Carlos Garcia Campos2013-01-111-0/+2
| | | | | | | | ephy_string_get_host_name() And return NULL like for file:// URIs. https://bugzilla.gnome.org/show_bug.cgi?id=691416
* Fix a ton of 'warning: function declaration isn’t a prototype'Xan Lopez2012-11-051-1/+1
| | | | | | | | | New warning flags have been added to gnome-common recently, and we were getting this a lot. Turns out in C 'foo ()' is not the same than 'foo (void)'; the first just means that no information is given about the number of arguments, the second means the function has exactly zero arguments, so add the 'void' thing all over the place when needed.
* ephy-string: improve a bit ephy_string_get_host_nameXan Lopez2012-08-171-0/+70
And add unit tests for it.